示例#1
0
 public static CorDebug Wrap(Debugger.Interop.CorDebug.CorDebug objectToWrap)
 {
     if ((objectToWrap != null))
     {
         return(new CorDebug(objectToWrap));
     }
     else
     {
         return(null);
     }
 }
示例#2
0
 public CorDebug(Debugger.Interop.CorDebug.CorDebug wrappedObject)
 {
     this.wrappedObject = wrappedObject;
     ResourceManager.TrackCOMObject(wrappedObject, typeof(CorDebug));
 }