我如何使用string.Format()来截断而不是round
本文关键字:round 何使用 string Format | 更新日期: 2023-09-27 18:06:43
我想以这样一种方式应用string.Format()
,它执行截断而不是舍入。例如
string.Format("##", 46.5); // output is 47, but I want 46
string.Format("##.#", 46.55); // output is 46.6, but I want 46.5
在格式化输出前使用Math.Truncate
截断