public ICorDebugValueBreakpoint CreateRelocBreakpoint()
        {
            ICorDebugValueBreakpoint ppBreakpoint;

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

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