public Debugger( IEmulationHost host ) { Debug.Assert( host != null ); if( host == null ) throw new ArgumentNullException( "host" ); _host = host; _control = new DebugControl( this ); _inspector = new DebugInspector( this ); _studio = new Studio( this ); }
public Debugger(IEmulationHost host) { Debug.Assert(host != null); if (host == null) { throw new ArgumentNullException("host"); } _host = host; _control = new DebugControl(this); _inspector = new DebugInspector(this); _studio = new Studio(this); }