I used to get exceptions and the application would stop and the debugger would show where the exception happened. I’ve since added ‘using System.Diagnostics’ and a few debugging lines. Now, I just get a message ‘A first chance exception of type ‘System.Exception’ occurred in RethinkFilesystem.dll’ or something similar in the Output window and my app kinda breaks. What did I do to change the behavior? How can I go back?
Share
Turn on stop on thrown exception in debugger. That is in visual studio, go to Debug->Exceptions then tick the box thrown next to clr exceptions.
Visual Studio: How to break on handled exceptions?