开发者

MVC Decimal Separator with multiple culture

开发者 https://www.devze.com 2023-03-08 10:48 出处:网络
I\'m working with an application with multiple culture, and when i change culture \'pt\' to \'en\' the decimal separator chan开发者_StackOverflow中文版ge to. Have some way to fixing the decimal separa

I'm working with an application with multiple culture, and when i change culture 'pt' to 'en' the decimal separator chan开发者_StackOverflow中文版ge to. Have some way to fixing the decimal separator?

thanks.


Roll your own CultureInfo by modifying the standard one:

var cInfo = CultureInfo.CreateSpecificCulture("en-us");

cInfo.NumberFormat.NumberDecimalSeparator = ",";
cInfo.NumberFormat.CurrencyGroupSeparator = ",";
cInfo.NumberFormat.PercentDecimalSeparator = ",";

Thread.CurrentThread.CurrentCulture = cInfo;
Thread.CurrentThread.CurrentUICulture = cInfo;
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号