When running my app in Visual Studio, it's ending on unhandled exceptions rather than showing a message box with the exception info and continuing on as I'm accustomed to.
What options do I need to change to get it back to the behavior I'm used to?
Edit: In Debug/Exceptions I do have the User-unhandled option selected for CLR Exceptions.
In my case, when I went to Debug -> Exceptions, the User-unhandled column was missing. Going to Debug -> Options and Settings and enabling Enable Just My Code fixed this, which consequently fixed this problem altogether.
For visual studio 2015 :
1.Open Exception settings window (it's new in 2015)![open Exception settings window (it's new in 2015)](https://i.stack.imgur.com/42j7y.png)
2.Check All CLR Exceptions![enter image description here](https://i.stack.imgur.com/bw25g.png)
3.If you don't need visual studio to throw specific exceptions uncheck this![enter image description here](https://i.stack.imgur.com/4yN6b.png)
Debug->Exceptions->Check Thrown/User-Unhandled
for Common Language Runtime Exceptionsedit: Maybe try to do a clean/rebuild, and run again? Maybe debug symbols are corrupt or something..