views:

444

answers:

2

C# uses the concept of Culture. Is this operationally similar to Locale in Java or are there significant differences in the underlying concepts?

+2  A: 

I am not particularly familiar with Java, but from what I can tell CultureInfo is roughly equivalent Locale in Java.

In short, it provides functionalty for formatting of numbers and dates, writing systems, string sorting and calendar functionality according to regional rules, regional meaning a combination of language or language and geographical region (and in some cases language, geographical region and alphabet).

Fredrik Mörk
+5  A: 
chaos
Agreed. A good example is "Simplified Chinese" and "Traditional Chinese", which are an important level of abstraction that .NET has but Java is missing.
dcstraw