本文介绍了实时服务器上的小数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的代码在服务器上是不正确的,但不在本地!
i have code which is incorrect on the server but not locally!
//Exchange rate conversion
conversion = Convert.ToDecimal(p.TotalPrice,CultureInfo.InvariantCulture) * _currency.GetExchangeRate(curFrom, curTo);
//the tostring conversion
conversion.ToString("#,#",CultureInfo.InvariantCulture)
BUG
在直播服务器上它最后添加了三个额外的零,但在本地服务器上它没有
Facepalm !!!!
THE BUG
on the live server it adds three extra zeros at the end but on local server it does not
Facepalm!!!!
推荐答案
string.Format("{0:00}",conversation);
将您的小数值转换为2位小数值。
that convert your decimal value to point 2 place decimal value.
这篇关于实时服务器上的小数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!