Go to current executing statement in Visual Studio while Debugging

后端 未结 3 1185
礼貌的吻别
礼貌的吻别 2021-01-31 01:31

While debugging in Visual Studio sometimes we wander far away from the current executing statement. We could tread our way back using Call Stack window. Is there a shortcut to g

相关标签:
3条回答
  • 2021-01-31 02:10

    Alt-* does take you to the current statement but it also shows you the disassembly. Use Alt-NUMERIC-*

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

    In the Debug Context Menu, there's a "Show Next Statement" option that should do what you want.

    If you've got the default General Development Settings applied, the default key binding for this is Alt+Num *. To see what it is in your settings, go to Tools -> Options -> Environment -> Keyboard, and find Debug.ShowNextStatement. You can, of course, also then change the key binding to one of your preference.

    0 讨论(0)
  • 2021-01-31 02:26

    Keyboard short cut in Visual Studio to return to current execution statement, press ALT + *

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