Mono.Debugger.DebuggerOptions.Usage C# (CSharp) Method

Usage() static private method

static private Usage ( ) : void
return void
        static void Usage()
        {
            Console.WriteLine (
                "Mono Debugger, (C) 2003-2007 Novell, Inc.\n" +
                "mdb [options] [exe-file]\n" +
                "mdb [options] exe-file [inferior-arguments ...]\n\n" +

                "   -debug-flags:PARAM        Sets the debugging flags\n" +
                "   -jit-arg:PARAM	      Additional argument for the inferior mono\n" +
                "   -jit-optimizations:PARAM  Set jit optimizations used on the inferior process\n" +
                "   -mono:PATH                Override the inferior mono\n" +
                "   -mono-prefix:PATH         Override the mono prefix\n" +
                "   -start                    Start inferior without halting in Main()\n" +
                "   -run                      Start inferior and stop in Main()\n" +
                "   -script                  \n" +
                "   -usage                   \n" +
                "   -version                  Display version and licensing information (short -V)\n" +
                "   -working-directory:DIR    Sets the working directory (short -cd)\n"
                );
        }