IntelliSense is a code-completion tool added to Visual Studio. It is one of a number of similar tools that allow for intelligent code completion or intelligent text completion on different platforms.
IntelliSense includes the following features.
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.
A list of valid members from a type appears after typing a trigger character such as a period (.
) in managed code or ::
in C++.
If you continue typing characters, the list is filtered to include only the members that begin with those characters or where the beginning of any word within the name starts with those characters.
IntelliSense also performs CamelCase matching, so you can just type the first letter of each camel-cased word in the member name to see the matches.
After selecting an item, you can insert it into your code by pressing either Tab or Space or Enter button.
Parameter Info gives you information about the number, names, and types of parameters required by a method, attribute generic type parameter, or template, etc.
The parameter in bold indicates the next parameter that is required as you type the function.
For overloaded functions, you can use the Up and Down arrow keys to view alternative parameter information for the function overloads.
Quick Info displays the complete declaration for any identifier in your code. When you select a member from the List Members box, Quick Info also appears.
If a function is overloaded, IntelliSense may not display information for all forms of the overload.
The Complete Word feature completes the rest of a variable, command, or function name after you have entered enough characters to disambiguate the term and press either Tab or Space or Enter button.