User contributions
- 10:27, 16 November 2017 (diff | hist) . . (+320) . . Provide a method for the player to swap 5 random tiles from their hand (→Simple Method) (current)
- 10:19, 16 November 2017 (diff | hist) . . (-154) . . Provide a method for the player to swap 5 random tiles from their hand (→Simple Method)
- 10:18, 16 November 2017 (diff | hist) . . (+514) . . Provide a method for the player to swap 5 random tiles from their hand
- 11:46, 14 November 2017 (diff | hist) . . (-1) . . If the player spells a ten or more letter word, they should receive a 200 point bonus
- 11:42, 14 November 2017 (diff | hist) . . (+101) . . N If the player spells a ten or more letter word, they should receive a 200 point bonus (Created page with "<syntax highlight lang = csharp> if (Word.Length > 10) { score = score + 200; } </syntax highlight>")
- 11:35, 14 November 2017 (diff | hist) . . (+433) . . UpdateAfterAllowedWord
- 11:15, 14 November 2017 (diff | hist) . . (+556) . . N UpdateAfterAllowedWord (Created page with "<syntaxhighlight lang=csharp> private static void UpdateAfterAllowedWord(string Word, ref string PlayerTiles, ref int PlayerScore, ref int PlayerTilesPlayed, Dictionary<char,...")
- 10:20, 16 February 2017 (diff | hist) . . (+833) . . Challenges facing legislators in the digital age - BE (current)
- 10:21, 15 December 2016 (diff | hist) . . (+4) . . Selection
- 10:19, 15 December 2016 (diff | hist) . . (+901) . . N Selection (Created page with "Selection uses if statements and switch statements. * if statements work by performing an action only if a condition is reached. <syntaxhighlight lang="csharp" line> if (a > b...")
- 10:06, 15 December 2016 (diff | hist) . . (+1) . . Repetition - Iteration
- 10:05, 15 December 2016 (diff | hist) . . (+80) . . Repetition - Iteration
- 10:03, 15 December 2016 (diff | hist) . . (-1) . . Repetition - Iteration
- 10:03, 15 December 2016 (diff | hist) . . (-36) . . Repetition - Iteration
- 10:02, 15 December 2016 (diff | hist) . . (+2) . . Repetition - Iteration
- 10:02, 15 December 2016 (diff | hist) . . (-113) . . Repetition - Iteration
- 10:02, 15 December 2016 (diff | hist) . . (+541) . . Repetition - Iteration
- 09:54, 15 December 2016 (diff | hist) . . (-5) . . Repetition - Iteration
- 09:54, 15 December 2016 (diff | hist) . . (+17) . . Repetition - Iteration
- 09:54, 15 December 2016 (diff | hist) . . (+339) . . N Repetition - Iteration (Created page with "Repetition is the use of a for loop to execute one piece of code over and over. There are multiple ways to create a for loop though. These are: * while uses one condition that...")
- 09:47, 15 December 2016 (diff | hist) . . (-13) . . Constants - Variables - Data Types
- 09:47, 15 December 2016 (diff | hist) . . (-1) . . Constants - Variables - Data Types
- 09:46, 15 December 2016 (diff | hist) . . (+7) . . Constants - Variables - Data Types
- 09:45, 15 December 2016 (diff | hist) . . (+512) . . Constants - Variables - Data Types
- 09:36, 15 December 2016 (diff | hist) . . (+80) . . Constants - Variables - Data Types
- 09:35, 15 December 2016 (diff | hist) . . (+187) . . Constants - Variables - Data Types
- 09:29, 15 December 2016 (diff | hist) . . (+3) . . Constants - Variables - Data Types
- 09:28, 15 December 2016 (diff | hist) . . (+503) . . N Constants - Variables - Data Types (Created page with "There are 9 types of data types. These include Boolean, string, integer, double, decimal, character, byte, float and long. Boolean is a binary value is true or false. String...")