Im making a asp.net(2.0) website.
I have defined two resource files in the App_GlobalResources folder 1) Website.ar.resx 2) Website.en.resx
Im trying to obtain the ResourceManager programatically.
Now, if I would have only defined Website.resx, VisualStudio automatically starts showing me a 'Resouces' namespace with the Class 'Website' that I can use to either directly access the resource objects and also gives me a ResourceManager property.
But when I renamed the file to Website.ar.resx that stopped happening.
My question is how can I obtain the ResourceManager object programatically for a desired culure?