decimal Debitvalue = 1156.547m;
decimal DEBITAMT = Convert.ToDecimal(string.Format("{0:0.00}", Debitvalue));
我只需要得到两位小数,但通过使用此代码,我得到 1156.547.让我知道我必须使用哪种格式来显示两位小数.
I have to get only two decimal places but by using this code I am getting 1156.547. Let me know which format I have to use to display two decimal places.
如果要四舍五入,看Math.Round()
这篇关于使用c#的两个小数位的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!