CDemo2.Program.runLauncher C# (CSharp) 메소드

runLauncher() 정적인 개인적인 메소드

static private runLauncher ( ) : void
리턴 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()