Visual Studio 2008 debugging does not stop on error

I have a simple Windows application written in Visual Studio 2008 (.NET 3.0, C #).

Without any changes in the project, solution or Visual Studion (from what I remember) something strange happens: when I debug (or start) my application, when it gets an error, Visual Studio does not show me any mailbox with an error and does not stop execution. It "looks" as if nothing had happened ... the code after the error was not executed, but everything else continues to behave as if nothing had happened.

What could be wrong?

+5
source share
3 answers

"", "" (Ctrl + D, E) Visual Studio , .

, , ; , .

+6

catch try? , catch ( , , , ).

0

From the goto tools menu OptionsProjects and SolutionsBuild and Run from On run when build or deployment errors occur, combobox selects Promptto run.

0
source