[求助]Math.Round是什么函数?怎么用?
[求助]Math.Round是什么函数?怎么用?是ASP.NET函数吗,还是别的?
返回最接近指定值的数字。
Math.Round(3.44, 1); //Returns 3.4.
Math.Round(3.45, 1); //Returns 3.4.
Math.Round(3.46, 1); //Returns 3.5.
知道这意思,我想问他是C#函数吗?
如果把Math.Round(DS.Tables("候选人名单").Rows(I)("得票数") / TotalVote * 100, 2) + " %"赋值给box.text
其中TotalVote是int类型。
这该怎么做,我这一点总是出现错误不能执行。
注:box.text=Math.Round(DS.Tables("候选人名单").Rows(I)("得票数") / TotalVote * 100, 2) & " %";
这行代码在VB中无错误,在C#中就通不过。