Well, there is no reason to use the ResourceManager directly (some exceptions will be applied), because if you use the generated code from resx-Files, all it does is the following:
public static string MyResourceName { get { return ResourceManager.GetString("MyResourceName", resourceCulture); } }
This is great, as you get a free confirmation of your resource names at compile time!
Tglatzer
source share