Mono.Debugger.DebuggerOptions.CreateXSP C# (CSharp) Méthode

CreateXSP() public static méthode

public static CreateXSP ( string root ) : DebuggerOptions
root string
Résultat DebuggerOptions
        public static DebuggerOptions CreateXSP(string root)
        {
            DebuggerOptions options = new DebuggerOptions ();
            options.InferiorArgs = new string [0];
            options.StartXSP = true;
            options.XSP_Root = root;
            options.SetupXSP ();
            return options;
        }