로캘에서 소수 구분 기호는 ','입니다.C# 로캘에서 문자열을 double로 변환합니다.
그러나 여전히 '.'을 사용하는 숫자와 함께 작동하는 C# 응용 프로그램을 작성하고 싶습니다. 소수점 구분 기호로 사용됩니다.
string b = "0,5";
double db = double.Parse(b); // gives 0.5
string a = "0.5";
double da = double.Parse(a); // gives 5, however i would like to get 0.5
가능한 복제 http://stackoverflow.com/questions/1354924/c-how-do-i-parse-a-string-with-a-decimal-point-to-a-double –
http : // stackoverflow .com/questions/2583362/how-to-convert-string-to-with-appropriate-cultureinfo 여기를보십시오 – Borgleader