Esempio n. 1
0
		public ICorDebugFunctionBreakpoint CreateBreakpoint()
		{
			ICorDebugFunctionBreakpoint ppBreakpoint;
			Interop.CorDebug.ICorDebugFunctionBreakpoint out_ppBreakpoint;
			this.WrappedObject.CreateBreakpoint(out out_ppBreakpoint);
			ppBreakpoint = ICorDebugFunctionBreakpoint.Wrap(out_ppBreakpoint);
			return ppBreakpoint;
		}
        public override bool Equals(object o)
        {
            ICorDebugFunctionBreakpoint casted = o as ICorDebugFunctionBreakpoint;

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