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

后端 未结 8 903
暗喜
暗喜 2021-02-13 00:29

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:19

    I was having this issue while developing a Web App that was running on IIS on my local machine. I found that opening the task manager and killing the process (w3wp), then trying again made the problem go away temporarily.

    0 讨论(0)
  • 2021-02-13 01:22

    There could be an exception while executing the instruction in question. Try enabling all exceptions to break into debugger and check.

    0 讨论(0)
提交回复
热议问题