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