Visual studio Intellisense color-coding not working

47,910

Solution 1

I recently had this issue after updating Visual Studio 2019.

I was able to fix it by heading to Tools > Options > Text Editor > C# > Advanced, and finally selecting Visual Studio 2019 in the Editor Color Scheme dropdown.

Screenshot for reference.

Solution 2

Are you sure your settings are all right, and the problem is elsewhere? You can check if your settings are not what you'd expect them to be in the 'Fonts and Colors' menu.
(Tools -> Options -> Environment -> Fonts and Colors)

You may have plugins installed which are inflicting with your current settings. If that's the case, you should try removing your add-ins, then re-installing them.

If it's certain that the problem is with your VS intellisense, first try refreshing the IntelliSense cache by selecting the 'Refresh Local Cache' option in the Edit menu of VS under the IntelliSense item.
(Edit -> IntelliSense -> Refresh Local Cache or just hit Ctrl+Shift+R)

If you still experience the problem, you should try closing VS, deleting the %appdata%\Microsoft\VisualStudio\11.0\ReflectedSchemas folder, then starting it up again to check if the problem is solved.

If neither of these could solve your problem, you can still try to reset all settings in VS. It has some chance to work, but I don't recommend it.
(Tools -> Import and Export Settings -> Reset all settings)

Solution 3

This happened to me with a new project in a solution. Another member in the team had created it and when I pulled it via git I got no color coding even though the code ran fine. I also had color coding in the other projects.

What fixed it for me was simply adding a new class to the project with no color coding. Then everything started working normally again.

Solution 4

My fix was to rename the file. I had originally created it as an html file. When I renamed it my intellisense came back.

Share:
47,910
Lost
Author by

Lost

Updated on July 09, 2022

Comments

  • Lost
    Lost almost 2 years

    Right now in my code suddenly some part of the code is not color-coded to Visual Studio classic theme colors. I am not sure if there is some error in my code but when I define some property for example:

    public class VideoEncodeTest : AndroidPowerTest
        {
            [CptfConfigAcceptedParametersClass]
            public VideoEncodeTestParameters VideoEncodeTestParameters { get; set; }
    
            [CptfConfigAcceptedParametersClass]
            public IBundleStrategy Strategy { get; set; }
    
    }
    

    I expect Type of the properties, Name of the base class and name of the attribute to be in color-coded in blue at least. However, it is not and it is plain black. This is only happening with this particular class and not happening with other classes. I am not sure why and what can be the reason.

    Any ideas? prior experience?

  • Lost
    Lost about 10 years
    Hi Guys, it turned out that I had a circular reference problem there. So VS did not error out on me(surprisingly), It did not explicitly tell me that I have Circular reference issue for some reason...
  • tony09uk
    tony09uk over 5 years
    Amazing, I spent half an hour switching different settings
  • A P Jo
    A P Jo almost 4 years
    Techie , thanks a lot, Ctrl+Shift+R worked like a charm !
  • noontz
    noontz almost 3 years
    In my case VS C# color / token resolving is permanently broken, and if your case is the same consider commenting/voting here: developercommunity.visualstudio.com/t/…