public ICorDebugBreakpointEnum EnumerateBreakpoints() { ICorDebugBreakpointEnum ppBreakpoints; Debugger.Interop.CorDebug.ICorDebugBreakpointEnum out_ppBreakpoints; this.WrappedObject.EnumerateBreakpoints(out out_ppBreakpoints); ppBreakpoints = ICorDebugBreakpointEnum.Wrap(out_ppBreakpoints); return(ppBreakpoints); }
public override bool Equals(object o) { ICorDebugBreakpointEnum casted = o as ICorDebugBreakpointEnum; return((casted != null) && (casted.WrappedObject == wrappedObject)); }