Describe how to implement globalization and localization in the use interface in .NET.Globalization is the process of making an application that supports multiple cultures without mixing up the business logic and the culture related information of that application.
Localization involves adapting a global application and applying culture specific alterations to it.
The classes and the interfaces provided by the System.Resources allow storing culture specific resources.
The ResourceManager class performs:
- A look up for culture-specific resources. - Provision of resource fallback when a localized resource does not exist. - Supports for resource serialization.
|