コード例 #1
0
ファイル: DebuggerProxy.cs プロジェクト: powercode/PSExt
 public DynamicDebuggerProxy(IDebugger proxy, IDebugFunctionDispatch debugFunctionDispatch)
 {
     _proxy = proxy;
     _debugFunctionDispatch = debugFunctionDispatch;
 }
コード例 #2
0
ファイル: DebuggerProxy.cs プロジェクト: powercode/PSExt
 /// <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);
 }