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