double 型の数値を int で割りたいです。文字列形式の小数点以下 2 桁の結果のみが必要です。スタック効率の観点からこれを行う最良の方法は何ですか?
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);
}