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