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

Debugger() public method

public Debugger ( DebuggerConfiguration config ) : System
config DebuggerConfiguration
return System
        public Debugger(DebuggerConfiguration config)
        {
            this.config = config;
            this.alive = true;

            ObjectCache.Initialize ();

            kill_event = new ManualResetEvent (false);

            thread_manager = new ThreadManager (this);
            process_hash = Hashtable.Synchronized (new Hashtable ());
            stopped_event = new ManualResetEvent (false);
            operation_host = new MyOperationHost (this);
        }