Tagged Questions

Represents information about a specific culture including the names of the culture, the writing system, and the calendar used, as well as access to culture-specific objects that provide information for common operations, such as formatting dates and sorting strings.

learn more… | top users | synonyms

58
votes
2answers
7k views

What is the difference between CurrentCulture and CurrentUICulture properties of CultureInfo in .NET?

In .NET there is the CultureInfo class in the System.Globalization namespace. It has two similar properties both returning values of the CultureInfo type: CurrentCulture and CurrentUICulture. What is ...
47
votes
4answers
12k views

How to use localization in C#

I just can't seem to get localization to work. I have a class library. Now I want to create resx files in there, and return some values based on the thread culture. How can I do that?
11
votes
3answers
361 views

Is Int32.ToString() culture-specific?

I'm running a beta version of ReSharper, and it's giving me warnings for the following code: int id; // ... DoSomethingWith(id.ToString()); The warning is on the id.ToString() call, and it's ...
11
votes
5answers
12k views

Why can't DateTime.ParseExact() parse “9/1/2009” using “M/d/yyyy”

I have a string that looks like this: "9/1/2009". I want to convert it to a DateTime object (using C#). This works: DateTime.Parse("9/1/2009", new CultureInfo("en-US")); But I don't understand why ...
10
votes
1answer
498 views

int.Parse of “8” fails. int.Parse always requires CultureInfo.InvariantCulture?

We develop an established software which works fine on all known computers except one. The problem is to parse strings that begin with "8". It seems like "8" in the beginning of a string is a reserved ...
10
votes
4answers
2k views

Best Practice - Format Multiple Currencies

What is best practice for the scenario listed below? We have an application which we would like to support multiple currencies. The software will respect the users locale and regional settings to ...
10
votes
4answers
10k views

C#: Setting CurrentCulture and CurrentUICulture of an application

Is there a way of setting culture for a whole application? All current threads and new threads? We have the name of the culture stored in a database, and when our application starts, we do ...
9
votes
3answers
268 views

How can I display culture-specific native digits instead of Arabic numerals?

I want to convert a numeric value to a string, displaying culture-specific digits. For example, the Dari language used in Afghanistan (culture name "prs-AF") uses Eastern-Arabic numerals instead of ...
9
votes
7answers
400 views

Accessing resource strings with CultureInfo in .NET

Another simple questions. I have website with different languages. If I want to access a string from the resource file I would use it like this Resources.MyResourceFile.MyStringIdentifier Very ...
9
votes
6answers
4k views

Double.Parse - Internationalization problem

This is driving me crazy. I have the following string in a ASP.NET 2.0 WebForm Page string s = "0.009"; Simple enough. Now, if my culture is Spanish - which is "es-ES" - and I try to convert the ...
8
votes
7answers
4k views

Convert.ToDateTime causes FormatException on afternoon date/time values

We have an application parsing date/time values in the following format: 2009-10-10 09:19:12.124 2009-10-10 12:13:14.852 2009-10-10 13:00:00 2009-10-10 15:23:32.022 One particular server all of the ...
7
votes
2answers
99 views

How to specify a custom thousands separator in a format strings

When I try the below code, I get the output 2 084 001. What could be wrong here? Isn't my format string supposed to override the current culture settings? decimal v = 2084000.7621m; ...
7
votes
3answers
194 views

How to determine if a CultureInfo instance supports Latin characters

Is it possible to determine if the CultureInfo instance that I am working with is based on a Latin character set or not?
7
votes
7answers
3k views

Get the currency from current culture?

Is there a way to get current information dynamically from the apps culture settings? Basically if the user has set the culture to US I want to know the currency is dollars, or if they have it set to ...
7
votes
4answers
6k views

How to get current regional settings in C#?

Normally you can get it by writing something like CultureInfo currentCulture = Thread.CurrentThread.CurrentCulture; But this way you can only get CultureInfo which was configured at the moment ...
6
votes
2answers
212 views

Is it possible to set a mask for MaskedEditExtender for the date format MMM-yyyy that would work in any culture?

The problem I'm having, as the title says, is that I need to use the short month name format with the year for Dates being validated by a MaskedEditExtender from the AjaxControlToolkit. MMM-yyyy for a ...
6
votes
1answer
135 views

Units of distance for the current CultureInfo in .Net

Is it possible to get the unit of distance from a CultureInfo class or any other class in the System.Globalization namespace. e.g. "en-GB" would be "mile", "en-FR" would be "km"
6
votes
2answers
451 views

Howto enumerate the LOCALIZED alphabet in C#?

First of all, this is not a duplicate of: Quickest way to enumerate the alphabet in C# Because I need to get all the characters of the alphabet OF AN ARBITRARY (variable) LANGUAGE, and that in the ...
6
votes
3answers
245 views

c# : In a dotnet class is there a property that states if the “Current” culture is actual the default culture?

Is there a property in some class that can tell me if the current culture is actually the default culture. Similar to how localization works with winforms. It states in a form if the language is ...
6
votes
3answers
265 views

What is the recommend way to create a custom culture and associated resource files for a specific Client?

I have client that wants to specifiy their own version of localized content for a subset of my string resources. For simplicity here is basic example: Lets say I have 2 localized strings (showing ...
6
votes
1answer
193 views

case insenstive string replace that correctly works with ligatures like “ß” <=> “ss”

I have build a litte asp.net form that searches for something and displays the results. I want to highlight the search string within the search results. Example: Query: "p" Results: ...
6
votes
1answer
1k views

How to translate CultureInfo language names

I know of three ways to get a full language name of a CultureInfo object. CultureInfo.DisplayName CultureInfo.NativeName CultureInfo.EnglishName DisplayName gives the name in the installed ...
6
votes
2answers
781 views

SEO implications of a multi lingual site with detection of system culture

I have developed a multi-lingual site in ASP.NET, whcih detects the user's system culture, and displays content in the appropriate language. This is all working nicely, but my client has since had an ...
6
votes
2answers
2k views

Why doesn't DateTime.ToShortTimeString() respect the Short Time format in “Regional and Language Settings”?

I have run into an issue that is probably due to my mis-understanding of how the DateTime.ToShortTimeString() method works. When formatting time strings with this function, I was assuming that it ...
6
votes
10answers
354 views

How can I (an American) test whether my ASP.NET/SQL Server app is handling decimals correctly for Germany

In the US, you use a "." as the separator, but in Germany you use a ",". I'm trying to test whether my logic is smart enough to handle either one but I seem to be failing to put my Windows 2000 ...
5
votes
1answer
79 views

Why do commas behave differently in int.Parse() and decimal.Parse() with InvariantCulture?

Why does: decimal.Parse("1,2,3,45", CultureInfo.InvariantCulture) return a decimal of 12345, yet: int.Parse("1,2,3,45", CultureInfo.InvariantCulture) throws an exception? I would expect the ...
5
votes
2answers
75 views

In .NET, how do I get the order of YYYY, MM and DD for a given culture

Designing a culture independent birthdate input consisting of three select: year, month and day. In .NET, how do I get the correct display order of the three for a given culture, ie.: ...
5
votes
3answers
175 views

Is this a good approach for temporarily changing the current thread's culture?

I work on a fairly large ASP .NET Web Forms application that is currently used primarily in the United States. We are in the process of rolling it out to other parts of the world, which of course ...
5
votes
4answers
526 views

Culture sensitive ParseFloat Function in JavaScript?

Do anyone have suggestion for writing culture sensitive ParseFloat Function in JavaScript, So that when I have a string 100,000.22 in US culture format the parse float function returns 100000.22 ...
5
votes
6answers
333 views

Globally overrride MonthNames for all instances of a specific culture

So, i have this problem where Microsoft actually got the month names wrong for the Greenlandic culture (kl-GL). I also know that i can pass my own array of string to the DateTimeFormatInfo.MonthNames ...
5
votes
2answers
142 views

.NET CultureInfo for Cuba?

I just noticed that the .NET Framework doesn't include Cuba in the CultureInfo class (format xx-XX). What is the best practice on this case?
5
votes
3answers
2k views

Change Language in C#

I am developing a multilingual program in C# on Windows How to change Windows writing language on certain actions... e.g. to change from English to Arabic on focus event. Thanks
5
votes
2answers
519 views

When should I specify CurrentCulture or InvariantCulture and when should I leave it unspecified?

What is the best practice for specifying CurrentCulture or InvariantCulture and not specifying the culture at all? From what I have read, if you're doing serialization, for instance, you need ...
5
votes
3answers
997 views

String to Numeric conversion and group separator

When I try to convert a string to a numeric value with Parse or TryParse or Convert.ChangeType, I can't manage de thousand separator as it is defined in the system: if I enter : var d = ...
5
votes
3answers
3k views

Is it possible to set the CultureInfo for an .NET application or just a thread?

I've an application written in C# which has no GUI or UI, but instead writes files that are parsed by another application (in XML and others). I have a customer whose CultureInfo has the ...
5
votes
3answers
3k views

ASP.NET Globalization: Culture=“auto” page directive with neutral culture crash?

I'm running into a case where an ASP.NET application using the built-in globalization facilities is crashing. On an ASP.NET page with the Culture="auto" directive, a user with a neutral culture as ...
5
votes
2answers
2k views

How to get timezone from properties in CultureInfo

I have a string, which contains a timestamp (yyyy-mm-dd hh:mm:ss). I can create a CultureInfo object based on other information I get. Therefore I know which country the timestamp is in. The timestamp ...
5
votes
1answer
967 views

CultureInfo & DateTimeInfo: How to check if is 24 hour time?

I'm modifying a globalized web application which uses stored CultureInfo for each logged in user. The client would like time data entry to be localized. Displaying is not a problem as the formatting ...
5
votes
7answers
2k views

Browser language: autodetect vs user select?

I am designing a localized web app. I am leaning on auto-detect browser language setting. But I notice a number of respectable sites asking the user to select a language. Is there any usability issue ...
4
votes
2answers
79 views

How to safely and correctly convert a number from user input to double?

This is, basically, a CultureInfo problem. Formally, in my country, the decimal separator is a comma (,) and a thousands separator is a dot (.). In practice, however, this is only used by accountants ...
4
votes
2answers
90 views

Why is the culture name for English (Caribbean) “en-029”?

Why is the culture name for English (Caribbean) "en-029"? I know "en-CA" is used for English (Canada), but why 029? What does it signify? Why was it chosen?
4
votes
3answers
326 views

IValueConverter get wrong culture in Windows Phone 7

I created a value converter in my Windows Phone 7 ... public class MyConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, ...
4
votes
4answers
703 views

Get language name from locale string using .NET? ex: en_us => english

How can i find the language for a given locale? Example: input: en_US output: English Using the .NET libraries? I tried the CultureInfo class, but i can't find something usefull. Thanks!
4
votes
5answers
233 views

CultureInfo thread safety

I have a multi-threaded application which parses some text and it needs to use English Culture Info for parsing numbers from this text. So, i do not want to create EngCulture everytime i call the ...
4
votes
2answers
318 views

Why not all countries are presented in CultureInfo.GetCultures()?

I am using this standard code for populating list of countries: static void Main(string[] args) { List cultureList = new List(); CultureInfo[] cultures = ...
4
votes
1answer
714 views

Parsing a DateTime containing milliseconds fails for certain cultures. Why?

I'm trying to parse a string containing milliseconds like this: string s = "11.05.2010 15:03:08.7718687"; // culture: de-CH DateTime d = DateTime.Parse(s); // works However, for example under the ...
4
votes
6answers
529 views

How to get DayNames from language only in .NET

Assume that I only have a country code (en, de, fr) and I need to display the weekdays in this language. I know about RegionInfo and CultureInfo - but I can't find a solution. If I create a country ...
4
votes
5answers
1k views

How can i convert english digits to arabic digits?

Hi i have this C# code for example DateTime.Now.ToString("MMMM dd, yyyy"); Now the current thread is loading the arabic culture. So the result is like this ???? 19, 2010 But i don't want the ...
4
votes
3answers
166 views

Finding weekend days based on culture

Is there a way to find the days that constitute a weekend or workweek based on different cultures using the .NET framework? For example, some Muslim countries have a workweek from Sunday through ...
3
votes
4answers
49 views

datetime.tostring month and day language

i have a list of email addresses of people that have different nationalities (for each person i have the iso code) when i send the email to all these people, in the text of the mail i need to to ...

1 2 3 4 5 6