I have a c# windows application project that exits immediately when a runtime exception occurs in debug mode.
Say for example this code:
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.
Say for example this code:
Code:
string fish;
fish = "fjfj";
button1.Text = fish.Substring(10, 30);
I've created a new project and it breaks normally - I don't know what's changed on this project / solution.