public ICorDebugHandleValue CreateHandle(CorDebugHandleType type)
        {
            ICorDebugHandleValue ppHandle;

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

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