Visual Studio keyboard shortcut to display IntelliSense

What's the keyboard shortcut for Visual Studio to display the IntelliSense box if one accidentally hits ESC and wants the box come back again?


Solution 1:

Additionally, Ctrl + K, Ctrl + I shows you Quick info (handy inside parameters)

Ctrl+Shift+Space shows you parameter information.

Solution 2:

Ctrl + Space

or

Ctrl + J

You can also go to menu ToolsOptionsEnvironmentKeyboard and check what is assigned to these shortcuts. The command name should be Edit.CompleteWord.

Solution 3:

The most efficient one is Ctrl + ..

It helps to automate insertions of using directives. It works if the focus is on a new identifier, e.g. class name.

Solution 4:

Ctrl+Space should do it.