System.Diagnostics.Debug.WriteLine stepped over

I am using Visual Studio 2013 in an ASP.NET MVC / C # project.

I output to the output window with

System.Diagnostics.Debug.WriteLine

but for some reason, VS stopped executing this line. I am executing Debug mode. If I go through the code, the debugger will jump over this line.

This is controlled by customization. I searched the Internet but jumped out nothing obvious

+4
source share
1 answer

Go to the project settings and check if there is a checkmark before Define DEBUG constant. Most likely, this is not the case, although this should be the default.

DEBUG - , , . , .

+2

Source: https://habr.com/ru/post/1525524/


All Articles