string retval;
retval = Decimal.ToInt32(1899.99M).ToString();
输出是1899。但是我想如果小数大于.5,则输出是1900,否则输出是1899。我该怎么办?提前致谢 !
最佳答案
首先使用Math.Round。
http://msdn.microsoft.com/en-us/library/system.math.round.aspx
string retval;
retval = Decimal.ToInt32(1899.99M).ToString();
最佳答案
首先使用Math.Round。
http://msdn.microsoft.com/en-us/library/system.math.round.aspx