Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is IntelliSense showing a star to the left of functions within if statements

Using Microsoft Visual Studio Professional 2019 Version 16.4.1

IntelliSense is showing a star icon to the left of IsNullOrEmpty. Not sure what it means.

IsNullOrEmpty screenshot

Edit 1: It's not just IsNullOrEmpty

System.Activities.Activity screenshot

Edit 2 It only shows the star within if() statement

like image 242
joym8 Avatar asked Dec 18 '19 19:12

joym8


People also ask

How do I fix IntelliSense code in Visual Studio?

Troubleshooting# If you find IntelliSense has stopped working, the language service may not be running. Try restarting VS Code and this should solve the issue. If you are still missing IntelliSense features after installing a language extension, open an issue in the repository of the language extension.

What is IntelliSense what are the option inside IntelliSense?

IntelliSense is a code-completion aid that includes a number of features: List Members, Parameter Info, Quick Info, and Complete Word. 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.

How do you show IntelliSense?

Ctrl + Space should do it.

How do I enable IntelliSense code in Visual Studio?

You can trigger IntelliSense in any editor window by typing Ctrl+Space or by typing a trigger character such as the . (dot character).


1 Answers

To turn it off, disable Visual Studio IntelliCode extension.

Extensions menu -> Installed -> Visual Studio IntelliCode

like image 187
Behzad Avatar answered Sep 18 '22 04:09

Behzad