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