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