Why does F10 (step over) in Visual Studio not work?

后端 未结 8 1865
春和景丽
春和景丽 2021-02-13 00:43

I\'m debugging a (web) project in Visual Studio 2008. I\'m hitting a breakpoint. F10 continues to the next line, as expected, but the next F10 just stops debugging and the code

8条回答
  •  清歌不尽
    2021-02-13 01:12

    Without knowing more about your application it's difficult to say, but usually this sort of thing happens when the process starts a thread or otherwise goes into code where there isn't any debug information.

提交回复
热议问题