Ejemplo n.º 1
0
        public ICorDebugFunctionBreakpoint CreateBreakpoint(uint offset)
        {
            ICorDebugFunctionBreakpoint ppBreakpoint;

            Debugger.Interop.CorDebug.ICorDebugFunctionBreakpoint out_ppBreakpoint;
            this.WrappedObject.CreateBreakpoint(offset, out out_ppBreakpoint);
            ppBreakpoint = ICorDebugFunctionBreakpoint.Wrap(out_ppBreakpoint);
            return(ppBreakpoint);
        }
Ejemplo n.º 2
0
        public override bool Equals(object o)
        {
            ICorDebugFunctionBreakpoint casted = o as ICorDebugFunctionBreakpoint;

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