Top "Cultureinfo" 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.

Difference between CultureInfo.CreateSpecificCulture() and the constructor of the class?

The class CultureInfo provides two way of creation: via a factory method CreateSpecificCulture(string). via a constructor with a string …

c# .net-3.5 globalization cultureinfo
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.…

c# cultureinfo
How to Convert Persian Digits in variable to English Digits Using Culture?

I want to change persian numbers which are saved in variable like this : string Value="۱۰۳۶۷۵۱"; to string Value="1036751"; How can …

c# .net cultureinfo string-parsing persian
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 …

c# .net datetime cultureinfo
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? …

c# .net locale cultureinfo
How to get language without country from CultureInfo

Does anyone know in ASP.Net how to get the language of the currentculture without it's countryname? I know this …

c# asp.net cultureinfo
How can i convert English digits to Arabic digits?

I have this C# code for example DateTime.Now.ToString("MMMM dd, yyyy"); Now the current thread is loading the …

c# arabic cultureinfo
What cultures are supported by the CultureInfo class in .NET 3.5?

I need a list of cultures that are supported by .NET 3.5, regardless of the OS used. This seems to be …

.net .net-3.5 localization globalization cultureinfo
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 …

c# internationalization currency cultureinfo regioninfo
ToString() default CultureInfo

I think I understand the CultureInfo usage. If I do simple : const int a = 5; string b = a.ToString(); is it …

c# tostring cultureinfo