Purpose of ResourceManager class - C#.NET

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.
Steps to prepare culture-specific formatting - C#.NET
Steps to prepare culture-specific formatting - The NumberFormatInfo class is used to define how symbols, currencies etc are formatted based on specific cultures...
Steps to implement localizability to the user interface - C#.NET
Steps to implement localizability to the user interface - Implementation consists of basically translating the UI...
What are Trace Listeners and Trace Switches? - C#.NET
What are Trace Listeners and Trace Switches? - Trace listeners are objects that are used to receive store and route tracing information...
Post your comment