예제 #1
0
        public ICorDebugModuleBreakpoint CreateBreakpoint()
        {
            ICorDebugModuleBreakpoint ppBreakpoint;

            Debugger.Interop.CorDebug.ICorDebugModuleBreakpoint out_ppBreakpoint;
            this.WrappedObject.CreateBreakpoint(out out_ppBreakpoint);
            ppBreakpoint = ICorDebugModuleBreakpoint.Wrap(out_ppBreakpoint);
            return(ppBreakpoint);
        }
        public override bool Equals(object o)
        {
            ICorDebugModuleBreakpoint casted = o as ICorDebugModuleBreakpoint;

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