예제 #1
0
 public DynamicDebuggerProxy(IDebugger proxy, IDebugFunctionDispatch debugFunctionDispatch)
 {
     _proxy = proxy;
     _debugFunctionDispatch = debugFunctionDispatch;
 }
예제 #2
0
 /// <summary>
 ///     Creates a new instance of the debugger proxy
 /// </summary>
 /// <param name="debugger">the real native debugger to delegate calls to</param>
 /// <param name="debugFunctionDispatch"></param>
 public DebuggerProxy(IDebugger debugger, IDebugFunctionDispatch debugFunctionDispatch)
 {
     _proxy = new DynamicDebuggerProxy(debugger, debugFunctionDispatch);
 }