user247702
user247702

Reputation: 24202

IntelliSense incomplete in some cases

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.

ResourceManager member list GetString hover

Things I've tried:

Is there anything else I can try?

Upvotes: 4

Views: 201

Answers (1)

Jehof
Jehof

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

Related Questions