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
namespace CSLight | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Player player1 = new Player("ArteSeit", 23, 1); | |
player1.ShowInformation(); | |
} | |
} |
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
namespace CSLight | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string[] array1 = new[] { "1", "2", "1" }; | |
string[] array2 = new[] { "3", "2" }; | |
List<string> lines = new List<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
namespace CSLight | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
const string CommandAddDossier = "1"; | |
const string CommandReadDossier = "2"; | |
const string CommandDeleteDossier = "3"; | |
const string CommandExitProgram = "4"; |
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
namespace CSLight | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
const string CommandSumNumbers = "sum"; | |
const string CommandExitProgram = "exit"; | |
List<int> numbers = new List<int>(); |
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
namespace CSLight | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Queue<int> sumPurchases = new Queue<int>(); | |
int countQueue = 5; | |
int sum = 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
namespace CSLight | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
const string CommandExitProgram = "0"; | |
Dictionary<string, string> explanatoryDictionary = new Dictionary<string, string>(); | |
explanatoryDictionary.Add("Алгоритм", "Последовательность шагов для решения задачи"); |
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
namespace CSLight | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.CursorVisible = false; | |
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
namespace CSLight | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
const string CommandAddDossier = "1"; | |
const string CommandReadDossier = "2"; | |
const string CommandDeleteDossier = "3"; | |
const string CommandFindFamily = "4"; |
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
namespace CSLight | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int[] numbers = new int [10]; | |
Random random = new Random(); | |
int minValue = -10; | |
int maxValue = 10; |
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
namespace CSLight | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int healtsPercents = 200; | |
int manaPercents = 8; | |
int charsBar = 10; | |
NewerOlder