Default .NET exception handler
        Posted  
        
            by ajs410
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by ajs410
        
        
        
        Published on 2010-04-15T21:50:24Z
        Indexed on 
            2010/04/15
            21:53 UTC
        
        
        Read the original article
        Hit count: 365
        
.NET
|exception-handling
So the other day my C# application crashed. Usually, with a .NET application, if you have an unhandled exception you get a nice error message with a stack trace.
However, this time, I got a different dialog that just told me there was an error and offered to attach a Debugger, but there was no stack trace in the dialog and the machine it was running on had no debugger installed.
What gives? Why don't I see the default .NET exception handler?
© Stack Overflow or respective owner