示例#1
0
        public override bool Equals(object o)
        {
            ICorDebugThread casted = o as ICorDebugThread;

            return((casted != null) && (casted.WrappedObject == wrappedObject));
        }
 public void SetAllThreadsDebugState(CorDebugThreadState state, ICorDebugThread pExceptThisThread)
 {
     this.WrappedObject.SetAllThreadsDebugState(((Debugger.Interop.CorDebug.CorDebugThreadState)(state)), pExceptThisThread.WrappedObject);
 }