Find out which line will be executed in Visual Studio debug mode

后端 未结 2 677
清歌不尽
清歌不尽 2020-12-21 23:00

How can I find out which line will be executed after performing any action?

If I know what will be executed I can put break point there. But what if I am not sure wh

相关标签:
2条回答
  • 2020-12-21 23:15

    Set a breakpoint at the line you want to stop after. Then once the breakpoint is hit Step Into or press F11 in Visual Studio. This takes you to the very next line of code that executes, no matter where it is in the project.

    0 讨论(0)
  • 2020-12-21 23:30

    For a .NET application you can use my Runtime Flow tool (30-day trial) to see code that is executed after some action.

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