RunMainLoop() protected method

protected RunMainLoop ( ) : void
return void
Ejemplo n.º 1
0
        public static void Main(string[] args)
        {
            DebuggerOptions options = DebuggerOptions.ParseCommandLine(args);

            Console.WriteLine("Mono Debugger");

            CommandLineInterpreter interpreter = new CommandLineInterpreter(options, true);

            interpreter.RunMainLoop();

            interpreter.Configuration.SaveConfiguration();
        }
Ejemplo n.º 2
0
        public static void Main(string[] args)
        {
            DebuggerOptions options = DebuggerOptions.ParseCommandLine (args);

            Console.WriteLine ("Mono Debugger");

            CommandLineInterpreter interpreter = new CommandLineInterpreter (options, true);

            interpreter.RunMainLoop ();

            interpreter.Configuration.SaveConfiguration ();
        }