views:

114

answers:

2
+4  Q: 

To catch a bug...

The typical workflow of catching an exception in action is get to the section of code where you suspect the exception of happening, select Debug/Exceptions, check Thrown for Common Language Runtime Exceptions, OK your way out of it, and continue execution.

This is a massive PITA. Is there a shortcut (or a context menu) that can be configured to toggle the Thrown checkbox for the Common Language Runtime Exceptions?

+1  A: 

You could try writing a macro, using the ExceptionGroups property.

SLaks
+3  A: 

Ctrl+Alt+E will bring up the exceptions menu.

Down Arrow, Alt+T will check/uncheck that box.

This might be the closest you will get.

Alex Moore