Пример #1
0
        static public void CreateConfigFile()
        {
            Console.SetCursorPosition(0, 0);
            Console.Clear();
            Console.WriteLine("I am going to create a config file at " + fullFileName);
            Console.WriteLine("Press any key to continue...");
            Console.WriteLine("If you do not whish to continue press Esc");
            Console.WriteLine("If you whish to open the file press O");
            Keys a = FConsole.Convert(Console.ReadKey());

            if (a == Keys.Escape)
            {
                Console.Clear();
                return;
            }
            File.WriteAllText(fullFileName, defaultJson);
            Console.Clear();
            hasOptionFile = true;
            if (a == Keys.O)
            {
                Event_options();
            }
        }
Пример #2
0
 public void Redraw()
 {
     Console.Clear();
     InitDraw();
 }