예제 #1
0
 public void Shutdown()
 {
     try
     {
         _hooks.Detach();
     }
     catch
     {
         // Won't matter anymore since we're shutting everything down anyway.
     }
 }
예제 #2
0
파일: App.cs 프로젝트: xxxmen/Rubberduck
 public void Shutdown()
 {
     try
     {
         Debug.WriteLine("App calling Hooks.Detach.");
         _hooks.Detach();
     }
     catch
     {
         // Won't matter anymore since we're shutting everything down anyway.
     }
 }