Пример #1
0
 public static void StartScreen()
 {
     PrintBuffer.PrintFrame();
     PrintBuffer.PrintType();
     UserInput.AnyKeyContinue();
     PrintBuffer.PrintFrame();
 }
Пример #2
0
 public static void Pause(string text)
 {
     Console.CursorVisible = false;
     Console.WriteLine("");
     Console.WriteLine("");
     Console.WriteLine("*** DEBUG : " + text + ": DEBUG ***");
     UserInput.AnyKeyContinue();
 }
Пример #3
0
        public static void Pause()
        {
            string text = ("Press AnyKey to Continue");

            Console.CursorVisible = false;
            Console.WriteLine("");
            Console.WriteLine("");
            Console.WriteLine("*** DEBUG *** " + text + " *** DEBUG ***");
            UserInput.AnyKeyContinue();
        }
Пример #4
0
 // - Press Any Key - Console Pause
 public static void Exit()
 {
     Console.CursorVisible = false;
     Console.WriteLine("\n*** DEBUGGING - Press Any Key to Exit - DEBUGGING ***");
     UserInput.AnyKeyContinue();
 }