Beispiel #1
0
        private void ReadGameBoard(string path)
        {
            FileWorker fr = new FileWorker();

            int           jArray  = 0;
            List <string> strList = new List <string>();

            //Считывание поля в список
            fr.ReadFile(ref jArray, ref strList, path);

            if (strList.Count > 0)
            {
                //Запись элементов в игровое поле
                SetGameBoard(ref jArray, ref strList);
            }
            else
            {
                Console.WriteLine("Ошибка чтения");
            }
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            Console.WriteLine("Введите имя файла для загрузки игрового поля :");
            string pathFrom = Console.ReadLine();

            Console.WriteLine("Введите имя файла для сохранения результата :");
            string pathTo = Console.ReadLine();

            GameBoard gm = new GameBoard(pathFrom);

            gm.CompliteBoard();

            FileWorker fr = new FileWorker();

            fr.WriteFile(pathTo, gm);

            Console.WriteLine("Игровое поле: ");
            Console.WriteLine(gm.ToString());


            Console.ReadKey();
        }