Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to see constructors in autocomplete (intellisense) of Visual Studio?

When I want to instantiate a class, and I hit Ctrl+Space, I get the suggestions popup box. It just shows me a list of class names, but no context related suggestions like a list of constructors for that class. Visual Studio just dumps the 'suggestions' below:

enter image description here

Can someone help me to make it easier to see what constructors there are, and what parameters a method has?

like image 312
user2190492 Avatar asked Feb 27 '18 15:02

user2190492


People also ask

How do I show IntelliSense in Visual Studio?

Ctrl + Space should do it.

How do I autocomplete in Visual Studio?

The suggestion list of Automatic completion appears as soon as you start typing a new identifier. The suggestion list of Basic completion appears when you press the default Visual Studio IntelliSense shortcut Ctrl+Space . If necessary, you can always return to the Visual Studio's native's IntelliSense.


Video Answer


1 Answers

Press Ctrl+Shift+Space. Then you should get something like this: enter image description here

like image 60
CoLiNaDE Avatar answered Sep 30 '22 20:09

CoLiNaDE