Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Which are the important namespaces during localization and globalization
Which are the important namespaces during localization and globalization?
✍: Guest
There are two most important namespaces:
System.Globalization - contains classes that define culture-related information,
including the language, the country/region, the calendars in use, the format patterns
for dates, currency and numbers, and the sort order for strings.
System.Resources - provides classes and interfaces that allow developers to create,
store, and manage various culture-specific resources used in an application. With this namespace you can read a resource file and display it accordingly to the user’s
culture.
2007-11-01, 5928👍, 0💬
Popular Posts:
In C#, what is a weak reference? Generally, when you talk about a reference to an object in .NET (an...
What Happens If a Hyper Link Points to a Music File? - XHTML 1.0 Tutorials - Understanding Hyper Lin...
What Happens If a Hyper Link Points to a Music File? - XHTML 1.0 Tutorials - Understanding Hyper Lin...
How To Write a Query with a Right Outer Join? - Oracle DBA FAQ - Understanding SQL SELECT Query Stat...
What is the benefit of using an enum rather than a #define constant? The use of an enumeration const...