I would like to know what people are using for effective exception handling
in windows forms applications?
I ideally want to log all exceptions raised by my application without try
catch blocks in every method.
The only way I can seen to do this is by subscribing to both the
Application.ThreadException and the AppDomain.UnhandledException.
Any suggestions on what the best way to achieve this?
Many thanks
DT