Is there a keyboard shortcut to move the cursor between methods in Visual Studio 2010?

后端 未结 10 528

Is there any keyboard shortcut to move the cursor between methods in Visual Studio? Is there any plugins that can do the same job?

All the time when I program, I wan

相关标签:
10条回答
  • 2020-12-09 02:23

    In Visual Studio 2015:

    Alt + Up or Alt + Down

    0 讨论(0)
  • 2020-12-09 02:26

    In Visual Studio 2013 with the commercial Visual Assist expansion you can use ALT+M to open a list with all methods in the current file. Select one, hit ENTER and the cursor will jump to it.

    0 讨论(0)
  • 2020-12-09 02:27

    Its Ctrl + } - by placing the cursot to end of line - using studio 2015

    Same will also bring the cursor back to bottom.

    so place the cursor at end of function and press Ctrl + }

    0 讨论(0)
  • 2020-12-09 02:28

    Hi another (cheaper) alternative might be the CTRL+M+M to collapse/expand the current method to it's definition, allowing you to quickly navigate to the next. Also CTRL+M+O to collapse all members is useful, with CTRL+M+L to expand all again.

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