CDemo2.Program.runLauncher C# (CSharp) Method

runLauncher() static private method

static private runLauncher ( ) : void
return void
        static void runLauncher()
        {
            Console.WriteLine("Press SPACE to enter Advanced Mode, or press any other key to start normally.");
            ConsoleKeyInfo cki = Console.ReadKey();
            if (cki.Key == ConsoleKey.Spacebar)
            {
                PowerMode();
            }
            normalMode();
        }
        static void normalMode()