Question

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

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?

 45  12051  45
1 Jan 1970

Solution

 55

I think you're looking for Ctrl + F2, which moves the cursor to the navigation bar at the top of a code view. From there, you can press Tab to move the cursor over to the member list.

For this (and pretty much every other Visual Studio hotkey/shortcut key combination), see here.

2009-09-21

Solution

 12

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

2019-06-21