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

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

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

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


        
3条回答
  •  名媛妹妹
    2021-02-19 08:31

    Shift+Alt+F11 is the default global shortcut for "Step Into Specific", which will bring up a context menu of all the methods you can step into from the current instruction.

    Of course, you can change the shortcut via Tools->Options->Customize...->Keyboard dialog.

    Otherwise, there is no feature that allows you to step into the specific method under the editor caret. Sounds like a nice idea that you should put up on uservoice for Visual Studio.

提交回复
热议问题