示例#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.
     }
 }