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