This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace Properties | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Renderer renderer = new Renderer(); | |
| Player player = new Player(40, 20, '@'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace WorkClasses | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Player player = new Player(1, "Владимир", "Любит играть в RPG"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| namespace CombineArrays | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| string[] array1 = new string[] { "1", "2", "1",}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| namespace PersonnelRecords | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| const string CommandAddDossier = "1"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| namespace DynamicArray | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| const string CommandSum = "sum"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| namespace QueueStore | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int cashRegister = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| namespace Dictionary | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Dictionary<string, string> wordDefinition = new Dictionary<string, string>(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace BraveNewWorld | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| char[,] map = | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace PersonnelRecords | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| const string CommandAddDossier = "1"; | |
| const string CommandShowDoissers = "2"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace Shuffle | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int[] numbers = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; |
NewerOlder