c#用format把999999999格式化成999,999,999.00的格式 c#用format把普通数字格式化成金额的格式
分享到: 更多
------解决方案--------------------
999999999.ToString("N") // ==〉 999,999,999.00 999999999.ToString("C") // ==〉 ¥999,999,999.00
------解决方案-------------------- .ToString("N") ------解决方案--------------------
string.Format("{0:N}",999999999) string.Format("{0:C}",999999999)
时间: 2025-01-01 16:22:22