private static void PrintKeys()
 {
     Console.Clear();
     PrintKey.PrintKeyboard();
     Console.WriteLine("\n(Press any key to return to Main Menu)");
     Console.ReadKey(true);
 }
Beispiel #2
0
 private static void Print(string toggle)
 {
     Console.Clear();
     PrintKey.PrintKeyboard();
     ClientSocket.SendRequest(toggle);
     Console.WriteLine("\nTogglet to:");
     PrintKey.PrintKeyboard();
     Console.WriteLine("\n(Press any key to return to Main Menu)");
     Console.ReadKey(true);
 }