catch unhandled exceptions

V

Victor Cazacov

Hello, All!

How can I set a global handler for all unhandled exceptions in my add-in ?
(C#)

AppDomain.CurrentDomain.UnhandledException
+= new UnhandledExceptionEventHandler(MyHandler);
seems not to be working.
 
Top