Intellisense Visual Studio Class Offer

Is it possible to make Visual Studio a list of all classes, not just imported namespaces? The only way I know auto import types is to enter the class name exactly right, then right-click and import. Something like Eclipse that can display all available classes as you type.

+7
source share
2 answers

Not sure about Intellisense.

There is always an object browser.

0
source

As mentioned here: is it possible for Intellisense to search for classes in non-imported namespaces, like in Eclipse?

You can 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 all the packages mentioned. Selecting a non-imported type from IntelliSense will automatically import this type.

0
source

Source: https://habr.com/ru/post/886113/


All Articles