C#.NET localized application

Name the namespace used to create a localized application.

System.Globalization
System.Resources


The classes contained in the System.Globalization namespace are useful for writing globalized (internationalized) applications. It contains classes that define culture-related information such as language, the country/region, the calendars in use, the format patterns for dates, currency, and numbers, and the sort order for strings.

The System.Resources namespace contains classes and interfaces which allow to create, store, and manage various culture-specific resources used in an application.
C#.NET assert()
C#.NET assert() - Assert method is in debug compilation. It takes a boolean condition as a parameter...
C#.NET Difference between // comments, /* */ comments and /// comments
C#.NET comments - // comments - It is Single-line comment...
What are the ways to deploy an assembly? - C#.NET
C#.NET What are the ways to deploy an assembly? - MSI installer, CAB archive, XCOPY command...
Post your comment