我想键入以下转换。
我的 C# 代码是。
float percentage = (present/total) * 100;
lblPercentage.Text += String.Format("{0:0.00}", (float)present / (float)total);
它提供如下输出:0.71
但我想要输出如下:71
我想键入以下转换。
我的 C# 代码是。
float percentage = (present/total) * 100;
lblPercentage.Text += String.Format("{0:0.00}", (float)present / (float)total);
它提供如下输出:0.71
但我想要输出如下:71