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.

Replace German characters (umlauts, accents) with english equivalents

Replace German characters (umlauts, accents) with english equivalents I need to remove any german specific characters from various fields of …

c# .net cultureinfo
Change Language in C#

I am developing a multilingual program in C# on Windows How to change Windows writing language on certain actions... e.…

c# .net windows multilingual cultureinfo
Replace dot(.) with comma(,) using RegEx?

I am working on a C# application. I want to change number decimal figure with comma(,) where i have dot(.) …

c# .net regex cultureinfo decimal-point
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 …

c# culture cultureinfo number-formatting
format number with 3 trailing decimal places, a decimal thousands separator, and commas after that

This is probably a simple question, and I'm sure there's a way to do it with string.format(), NumberFormatInfo, CultureInfo …

c# string-formatting cultureinfo number-formatting
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 …

c# datetime tostring cultureinfo
Why do I get, "Culture is not supported" and What, if Anything, Should I Do about it?

I have a breakpoint on the "return" line here: [HttpGet] [Route("api/Test/{id1}/{id2}")] public NRBQEntity GetTestMessage(String id1, …

c# asp.net-web-api globalization cultureinfo culture
Passing a DateTime to controller via URL causing error in ASP .NET MVC 3 (culture)

My application is setted with pt-BR culture (Date is dd-mm-yyyy) in web.config: <globalization enableClientBasedCulture="false" requestEncoding="utf-8" responseEncoding="…

asp.net-mvc-3 cultureinfo
ToString("0") versus ToString(CultureInfo.InvariantCulture)

I would like to make sure that certain numbers in my application are printed without any separators, groupings etc. no …

.net globalization cultureinfo
Could string comparisons really differ based on culture when the string is guaranteed not to change?

I'm reading encrypted credentials/connection strings from a config file. Resharper tells me, "String.IndexOf(string) is culture-specific here" on …

c# resharper configuration-files cultureinfo string-comparison