Example #1
0
        public ICorDebugHandleValue CreateHandle(CorDebugHandleType type)
        {
            ICorDebugHandleValue ppHandle;

            Debugger.Interop.CorDebug.ICorDebugHandleValue out_ppHandle;
            this.WrappedObject.CreateHandle(((Debugger.Interop.CorDebug.CorDebugHandleType)(type)), out out_ppHandle);
            ppHandle = ICorDebugHandleValue.Wrap(out_ppHandle);
            return(ppHandle);
        }
        public override bool Equals(object o)
        {
            ICorDebugHandleValue casted = o as ICorDebugHandleValue;

            return((casted != null) && (casted.WrappedObject == wrappedObject));
        }