T
Timothy Parez
Hi,
I'm using
AppDomain.CurrentDomain.UnhandledException += new
UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
in my application to handle unhandled exceptions (duuh)
but my event handler is never triggered
private static void CurrentDomain_UnhandledException(object sender,
UnhandledExceptionEventArgs e)
{
//some code goes here
}
What am I doing wrong?
Thnx.
Tim.
I'm using
AppDomain.CurrentDomain.UnhandledException += new
UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
in my application to handle unhandled exceptions (duuh)
but my event handler is never triggered
private static void CurrentDomain_UnhandledException(object sender,
UnhandledExceptionEventArgs e)
{
//some code goes here
}
What am I doing wrong?
Thnx.
Tim.