本文介绍了格式化浮到2位小数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我目前正在建设一个客户的网站销售模块。到目前为止,我已经拿到了销售价格,以计算出完美的地方,但我来卡住正在格式化输出到小数点后2位。
I am currently building a sales module for a clients website. So far I have got the sale price to calculate perfectly but where I have come stuck is formatting the output to 2 decimal places.
这样我就可以将数据绑定结果到ListView我目前调用这个变量中。
I am currently calling this in a variable so that I can data bind the results to a listview.
Sale = float.Parse(((x.Sale_Price - (x.Sale_Price * (x.Discount_Price / 100))).ToString())),
谁能告诉我如何格式化输出为2位小数?非常感谢!
Can anyone show me how to format the output to 2 decimal places?? Many Thanks!
推荐答案
您可以到传递格式字符串的方法
You can pass the format in to the to string method
例如:
ToString("0.00"); //2dp Number
ToString("n2"); // 2dp Number
ToString("c2"); // 2dp currency
这篇关于格式化浮到2位小数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!