Explain the purpose of ResourceManager class. What namespace contains it? Use ResourceManager class to retrieve resources that exist in an assembly. Steps to do so are:
a. create a reference to the assembly that has the resources. b. create an instance of ResourceManager. c. specify the base name of the resource file and provide the reference to the assembly that contains it. d. Use the ResouceManager's GetObject or GetString method to retrieve the resource. System.Resources namespace contains it.
|