Reputation: 24202
There may be other cases, but this is the first one that I've seen.
System.Resources.ResourceManager
is missing a part of the IntelliSense. For example, GetString
is missing. Typing GetString(
won't give IntelliSense. Hovering over it shows information.
Things I've tried:
%AppData%\Roaming\Microsoft\VisualStudio\11.0\ReflectedSchemas
devenv /resetuserdata
Is there anything else I can try?
Upvotes: 4
Views: 201
Reputation: 35544
This is not a bug and IntelliSense displays what you requested.
You need to create an instance of the ResourceManager to get the methods like GetString or GetObject, cause these are instance methods.
Currently you access the class ResourceManager
and therefore IntelliSense only lists the static members.
Upvotes: 2