在尝试计算完成百分比时,我在这里遗漏了什么?我的百分比方程似乎返回了错误的百分比。
Int32 counter = 0;
foreach (var vehicle in vehicles)
{
counter += 1;
Int32 percentage = (Int32)((double)counter * vehicles.Count()) / 100;
_worker.ReportProgress(percentage);
if (_worker.CancellationPending)
{
e.Cancel = true;
_worker.ReportProgress(0);
return;
}
}
最佳答案
要计算出你应该做的百分比
progress
-------- x 100
total
你在做
progress x total
----------------
100
尝试使用
(counter * 100) / vehicles.Count()
代替。注意:如果你在除法之前乘以 100,这意味着你不需要把强制转换为浮点数/ double 数,但这确实意味着你的所有百分比都被四舍五入了。如果您想要更精确的百分比,请转换为 double ,不要担心顺序。
关于c# - 在 C# 中计算百分比,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12978355/