This is one of those instances when punctuation and grammar counts ie “I helped my uncle Jack, off a horse” vs “I helped my uncle jack off a horse” ….
Break, first exceptions is a method of debugging where you set Visual Studios up, to create a break point at the first instance of an exception. This is particularly useful when exception handling hasn’t been properly implemented or an empty Try – Catch block has been created and the exception is silently getting handled and not getting reported to the user ( or the developer ).
Here are the steps in order to setup up Break, first exceptions.
- In visual studios (2010 in this case) click on debug -> Exceptions or press the shortcut of ctrl+alt+e

- In the Exception dialog box, select Thrown for the category of “Common Language Runtime Exceptions”

That’s all there is too it. Have fun killing those bugs.





