Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How Visual Studio Intellisense works?

Can somebody please shed light on how exactly intellisense works in Visual Studio?

like image 278
Novice Avatar asked Mar 18 '11 06:03

Novice


People also ask

Is IntelliSense a compiler?

IntelliSense for cross-compilingThe C/C++ extension isn't a compiler--it provides rich language features such as syntax highlighting and IntelliSense.

How do I show IntelliSense in Visual Studio?

The suggestion list of Basic completion appears when you press the default Visual Studio IntelliSense shortcut Ctrl+Space .

What is IntelliSense write steps to view intelligence?

What Does Intellisense Mean? IntelliSense is a code completion tool that is built into Microsoft Visual Studio. It is one of a number of similar tools that allow for intelligent code completion or intelligent text completion on different platforms.


2 Answers

The secret behind intellisense is Build Providers, which run in the background. This article will throw more light on this topic:

http://aspalliance.com/1102_Creating_a_Custom_BuildProvider_in_ASPNET_20

Hope this helps,

like image 92
Pranay Rana Avatar answered Sep 21 '22 19:09

Pranay Rana


Here's an MSDN article providing an overview. It discusses features, language specific topics, customation, when it's not available and a number of other topics.

like image 26
Jay Riggs Avatar answered Sep 22 '22 19:09

Jay Riggs