Visual Studio : Hotkey/way to step into f() in statement a()->f(b(),c(),d()) directly

前端 未结 3 2297
孤街浪徒
孤街浪徒 2021-02-19 07:54

While debugging, I am currently at this (next) statement :-

system()->executeFracture(calculateFracture(data));
                       ^^1          


        
3条回答
  •  萌比男神i
    2021-02-19 08:07

    Not a hotkey, but the closest thing I know of can be found on the right-click menu when your debugger is stopped on a line of code line that. You should be able to find an entry to "Step Into Specific" with a sub-menu giving the choice of all the functions from that line.

    https://msdn.microsoft.com/library/7ad07721(v=vs.100).aspx

提交回复
热议问题