User contributions
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 09:47, 31 May 2022 (diff | hist) . . (+239) . . Advanced Information Revision Notes (→Halting Problem)
- 09:46, 31 May 2022 (diff | hist) . . (-1) . . Advanced Information Revision Notes (→Graphs)
- 09:45, 31 May 2022 (diff | hist) . . (+10) . . Advanced Information Revision Notes (→Graphs)
- 09:44, 31 May 2022 (diff | hist) . . (0) . . Advanced Information Revision Notes (→Matrix vs List)
- 09:43, 31 May 2022 (diff | hist) . . (-6) . . Advanced Information Revision Notes (→Matrix vs List)
- 09:43, 31 May 2022 (diff | hist) . . (+354) . . Advanced Information Revision Notes (→Matrix vs List)
- 09:35, 31 May 2022 (diff | hist) . . (+1,091) . . Advanced Information Revision Notes (→Graphs)
- 09:21, 31 May 2022 (diff | hist) . . (+81) . . Advanced Information Revision Notes (→Arrays)
- 09:19, 31 May 2022 (diff | hist) . . (+826) . . N Advanced Information Revision Notes (Created page with "=Recursion= =Arrays= An Array is a data structure that allows you to store several values of the '''same data type'''. You must declare the size of the array when it is crea...")
- 09:04, 31 May 2022 (diff | hist) . . (+65) . . Section A AL
- 12:43, 31 March 2022 (diff | hist) . . (+6) . . Consequences of uses of computing (→Cultural)
- 15:26, 24 January 2022 (diff | hist) . . (+65) . . Section D 2022 (→Extension) (current)
- 15:23, 24 January 2022 (diff | hist) . . (+97) . . Section D 2022 (→Functionality)
- 12:10, 31 December 2021 (diff | hist) . . (+1) . . Section D 2022 (→Functionality)
- 12:10, 31 December 2021 (diff | hist) . . (+72) . . Section D 2022 (→Functionality)
- 12:08, 31 December 2021 (diff | hist) . . (+49) . . Section D 2022 (→Simple Improvements)
- 12:00, 31 December 2021 (diff | hist) . . (+55) . . Section D 2022 (→Functionality)
- 10:50, 24 December 2021 (diff | hist) . . (+327) . . Section C 2022 (→Lists) (current)
- 10:48, 24 December 2021 (diff | hist) . . (+428) . . Section C 2022 (→Static)
- 10:42, 24 December 2021 (diff | hist) . . (+300) . . Section C 2022 (→Constructors)
- 10:39, 24 December 2021 (diff | hist) . . (+505) . . Section C 2022 (→Use of 'base')
- 10:34, 24 December 2021 (diff | hist) . . (+188) . . Section C 2022 (→Use of 'this')
- 10:28, 24 December 2021 (diff | hist) . . (-9) . . Section C 2022 (→Virtual & Override)
- 10:27, 24 December 2021 (diff | hist) . . (+703) . . Section C 2022 (→Virtual & Override)
- 10:20, 24 December 2021 (diff | hist) . . (+1,099) . . Section C 2022 (→Question Help)
- 11:54, 23 December 2021 (diff | hist) . . (+3,671) . . N 2022 - CardCollection (Created page with "=The Code= <syntaxhighlight lang=c#> class CardCollection { protected List<Card> Cards = new List<Card>(); protected string Name; public CardColle...") (current)
- 11:52, 23 December 2021 (diff | hist) . . (+2,377) . . N 2022 - Lock (Created page with "=The Code= <syntaxhighlight lang=c#> class Lock { protected List<Challenge> Challenges = new List<Challenge>(); public virtual void AddChallenge(List<stri...") (current)
- 11:49, 23 December 2021 (diff | hist) . . (+81) . . 2022 - Challenge (→Methods) (current)
- 11:49, 23 December 2021 (diff | hist) . . (+1,050) . . N 2022 - Challenge (Created page with "=The Code= <syntaxhighlight lang=c#> class Challenge { protected List<string> Condition; protected bool Met; public Challenge() {...")
- 11:43, 23 December 2021 (diff | hist) . . (+125) . . 2022 - DifficultyCard (→Process Method) (current)
- 11:42, 23 December 2021 (diff | hist) . . (+58) . . 2022 - DifficultyCard (→Process Method)
- 11:41, 23 December 2021 (diff | hist) . . (+175) . . 2022 - DifficultyCard (→Process Method)
- 11:39, 23 December 2021 (diff | hist) . . (+591) . . 2022 - DifficultyCard
- 11:35, 23 December 2021 (diff | hist) . . (+1,728) . . N 2022 - DifficultyCard (Created page with "=The Code= <syntaxhighlight lang=c#> class DifficultyCard : Card { protected string CardType; public DifficultyCard() : base() {...")
- 11:14, 23 December 2021 (diff | hist) . . (0) . . 2022 - Add a joker card (→Process Method Of JokerCard) (current)
- 11:13, 23 December 2021 (diff | hist) . . (+146) . . 2022 - Add a joker card (→Using A JokerCard)
- 11:11, 23 December 2021 (diff | hist) . . (0) . . 2022 - Add a joker card
- 11:08, 23 December 2021 (diff | hist) . . (+33) . . 2022 - Add a joker card (→Using A JokerCard)
- 10:57, 23 December 2021 (diff | hist) . . (+559) . . 2022 - Add a joker card (→Getting Dealt A JokerCard)
- 14:07, 22 December 2021 (diff | hist) . . (+269) . . 2022 - ToolCard (→The Constructors) (current)
- 14:03, 22 December 2021 (diff | hist) . . (+189) . . 2022 - ToolCard (→The Constructors)
- 14:00, 22 December 2021 (diff | hist) . . (+488) . . 2022 - ToolCard
- 13:57, 22 December 2021 (diff | hist) . . (+236) . . 2022 - ToolCard
- 13:55, 22 December 2021 (diff | hist) . . (+1,129) . . N 2022 - ToolCard (Created page with "=The Code= <syntaxhighlight lang=c#> class ToolCard : Card { protected string ToolType; protected string Kit; public ToolCard(string t, string k)...")
- 13:54, 22 December 2021 (diff | hist) . . (+4) . . 2022 - Card (→Other Methods) (current)
- 13:53, 22 December 2021 (diff | hist) . . (+374) . . 2022 - Card (→Other Methods)
- 13:48, 22 December 2021 (diff | hist) . . (+97) . . 2022 - Card (→The Constructor Method)
- 13:47, 22 December 2021 (diff | hist) . . (+101) . . 2022 - Card
- 13:46, 22 December 2021 (diff | hist) . . (+167) . . 2022 - Card
- 13:45, 22 December 2021 (diff | hist) . . (+383) . . 2022 - Card
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)