VS.net 2005 - not 'breaking' on runtime exception in debug

Soldato
Joined
8 Feb 2004
Posts
3,822
Location
London
I have a c# windows application project that exits immediately when a runtime exception occurs in debug mode.

Say for example this code:

Code:
            string fish;
            fish = "fjfj";
            button1.Text = fish.Substring(10, 30);
It exits immediately rather than breaking and highlighting the error line in yellow.

I've created a new project and it breaks normally - I don't know what's changed on this project / solution.
 
Back
Top Bottom