Is there a keystroke in Visual Studio to toggle break on all CLR exceptions, first chance?
c#, debugging, exception, visual-studio
Solution
There is no built-in way to do this. However, unless you are using Visual Studio Express you can try this Extension: Exception Breaker, it works for me.
What this extension does is provide a toolbar-button that basically toggles the checkbox you showed in your picture. And you can assign a keystroke to it like any other toolbar-button.
Problem
To toggle break on all exceptions right now, I have to: - Debug->Exceptions - Click in the `Thrown` column next to "Common Language Runtime Eceptions" - OK Normally I want to stop on all exceptions, but when working in code that uses exceptions in mainline cases, I need to disable that behavior. Having a keystroke would be nice.