/// <summary> /// Console commands handler /// </summary> private static void KeepAlive() { while (true) { var l = Console.ReadLine(); if (l != "") { if (l.StartsWith("/")) { ConsoleCommands.Handle(l); } } } }