IntelliSense is incomplete in some cases

There may be other cases, but this is the first I have seen.

System.Resources.ResourceManager missing the IntelliSense part. For example, GetString missing. Entering GetString( will not give IntelliSense. GetString( over it displays information.

ResourceManager member listGetstring hover

Things I tried:

  • Restart Visual Studio
  • Reset all environment settings
  • Delete %AppData%\Roaming\Microsoft\VisualStudio\11.0\ReflectedSchemas
  • Run devenv /resetuserdata

Is there anything else I can try?

+4
source share
1 answer

This is not a mistake, and IntelliSense displays what you requested.

You need to create an instance of ResourceManager to get methods like GetString or GetObject, because these are instance methods.

You are currently accessing the ResourceManager class, and therefore IntelliSense only displays static elements.

+2
source

All Articles