我想用一个 int 来划分一些 double 类型。我只需要字符串格式的 2 个 deicmal 位置的结果。就堆栈效率而言,最好的方法是什么?
double d=321321321313131233213213213213;
int i=123;
ToString(d/i); //what do I get when I do this? A double? A float?
public String ToString(float? result) //what should I cast the result?
{
return @String.Format("{0:#,0.##;} divided double by int", result);
}