Is there a hotkey in Visual Studio to open the member drop down list?

Viewed 11208

In Visual Studio there is a drop down list in the top right hand corner that you can use to navigate to the various members in the class. Does anyone know if there is a hot key to open this ddl?

6 Answers

Visual Studio 2017+: They now support Resharper-like shortcuts. They work pretty well, too.

  • Ctrl+T - 'Go to All' (class/member/file), type m MyProp for members only
  • Alt+\ - 'Go to Member in current file'

enter image description here

Using VS 2008, I still don't know how to get directly to the Members dropdown which is what I want. But, the key bindings will be different for everyone. The command you want to search for under Options > Keyboard > Show commands containing: is Window.MoveToNavigationBar.

Related