public static ICorDebugBreakpoint Wrap(Debugger.Interop.CorDebug.ICorDebugBreakpoint objectToWrap)
 {
     if ((objectToWrap != null))
     {
         return(new ICorDebugBreakpoint(objectToWrap));
     }
     else
     {
         return(null);
     }
 }
 public ICorDebugBreakpoint(Debugger.Interop.CorDebug.ICorDebugBreakpoint wrappedObject)
 {
     this.wrappedObject = wrappedObject;
     ResourceManager.TrackCOMObject(wrappedObject, typeof(ICorDebugBreakpoint));
 }