Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio intellisense class suggestion

Is it possible to make Visual Studio list all classes, and not just the ones from the imported namespaces? The only way I know of auto-importing types this way is to type in the class name exactly right, then right-click and import. Something like Eclipse, which can list all available classes as you are typing.

like image 700
ManiSto Avatar asked Apr 18 '11 05:04

ManiSto


1 Answers

As mentioned here: Is it possible for Intellisense to search for classes in unimported namespaces like in Eclipse?

You may use the IntelliSense Extender Plugin. For Visual Studio 2017:

https://marketplace.visualstudio.com/items?itemName=Dreamescaper.IntelliSenseExtender

And for VS 2019:

https://marketplace.visualstudio.com/items?itemName=Dreamescaper.IntellisenseExtender2019

It includes the types of all projects in the solution and of all referenced packages. Selecting an not imported type from IntelliSense will then auto import that type.

like image 129
derMrich Avatar answered Nov 09 '22 04:11

derMrich