本文介绍了Asp.net中的全球化的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有两个双打值
我正在分配这些值

I have two doubles value
i am assigning those values

Double planned,convert_hours,total;
planned=0.125;
convert_hours=1.525;
total=planned+convert_hours;




但是它接受的值是0,125和1,525,而不是0.125和1.525

我认为这是因为全球化问题.

如果是,请帮助我解决此问题.




But its accepting values like 0,125 and 1,525 instead of 0.125 and 1.525

I think its because of globalisation problem..

IF yes,please help me to resolve this

推荐答案


这篇关于Asp.net中的全球化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-14 05:42