Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

visual studio parameter listing intellisense

Intellisense typically pops up when I open the '(' on a function call showing the data types of the parameters matched, allowing you to hit up or down to see all possibilities of overloaded function calls.

Is there a keyboard shortcut to force this to happen if I move cursor focus outside the function call and want to see it again?

like image 981
sammarcow Avatar asked Jul 21 '11 18:07

sammarcow


People also ask

How do I show IntelliSense in Visual Studio?

Ctrl + Space should do it.

What does IntelliSense provide a list of?

IntelliSense is a code-completion aid that includes a number of features: List Members, Parameter Info, Quick Info, and Complete Word. These features help you to learn more about the code you're using, keep track of the parameters you're typing, and add calls to properties and methods with only a few keystrokes.


2 Answers

Ctrl+Shift+Space shows the parameter information..

Obtained from Whats the default intellisense shortcut in vs2008? reposted by Rahul

like image 85
sammarcow Avatar answered Sep 21 '22 15:09

sammarcow


Go to tools->options->keyboard then find Edit.ParameterInfo and assign whatever shortcut you want to it. Default is ctrl+k, p

like image 26
Yoghurt Avatar answered Sep 17 '22 15:09

Yoghurt