public static void StartScreen() { PrintBuffer.PrintFrame(); PrintBuffer.PrintType(); UserInput.AnyKeyContinue(); PrintBuffer.PrintFrame(); }
public static void Pause(string text) { Console.CursorVisible = false; Console.WriteLine(""); Console.WriteLine(""); Console.WriteLine("*** DEBUG : " + text + ": DEBUG ***"); UserInput.AnyKeyContinue(); }
public static void Pause() { string text = ("Press AnyKey to Continue"); Console.CursorVisible = false; Console.WriteLine(""); Console.WriteLine(""); Console.WriteLine("*** DEBUG *** " + text + " *** DEBUG ***"); UserInput.AnyKeyContinue(); }
// - Press Any Key - Console Pause public static void Exit() { Console.CursorVisible = false; Console.WriteLine("\n*** DEBUGGING - Press Any Key to Exit - DEBUGGING ***"); UserInput.AnyKeyContinue(); }