Gets the CultureInfo object that is culture-independent (invariant).

learn more… | top users | synonyms

3
votes
1answer
69 views

Convert decimal under non-english Windows

I have installed C# application under Spanish MS Windows Server. So this code is working in a wrong way. decimal? top = 80.0m; double convertedTop = (double)decimal.Parse(top.ToString(), ...
0
votes
1answer
143 views

Posting date (dd/mm/yyyy) and float (comma) values to aspnet WebApi

The Problem When I post jSon data to webapi, using pt-br formats (dd/mm/yyyy for date and comma decimal separator for float), the values are deserialized as en-us formats resulting in error. i.e. ยป ...
3
votes
2answers
2k views

how to set default culture info for entire c# application

I want to set default culture info for that class or for entire application. For example in Turkey 3,2 = in english 3.2 so application uses my local but i want it to use as default ...