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

后端 未结 8 1836
春和景丽
春和景丽 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:17

    It might be stepping over the last executing code in the thread or somehow it's going back to the UI thread. If it's a GUI app, try doing something that invokes an event handler and see if it breaks on the next execution.

提交回复
热议问题