Esempio n. 1
0
 protected override void Dispose(bool disposing)
 {
     try
     {
         this.UnRegisterDebuggerEvents();
         if (null != _libraryManager)
         {
             _libraryManager.Dispose();
             _libraryManager = null;
         }
     }
     finally
     {
         base.Dispose(disposing);
     }
 }
 protected override void Dispose(bool disposing)
 {
     try
     {
         UIThread.DoOnUIThread(() => this.UnRegisterDebuggerEvents());
         if (null != _libraryManager)
         {
             _libraryManager.Dispose();
             _libraryManager = null;
         }
     }
     finally
     {
         UIThread.DoOnUIThread(() => base.Dispose(disposing));
     }
 }