我用了:
Result_TextBox.Text = result.ToString(".#######"); //result is double
但是如果结果是 100.0000000,它就变成了 100。我应该使用什么来保持小数点后 7 位的精度?
我试过:
Result_TextBox.Text = Math.round(result, 7); //but this is effective at all, why?
请帮忙
更新:有人可以解释“#”和“0”吗?