📜  字符串格式逗号 c# 代码示例

📅  最后修改于: 2022-03-11 14:49:04.231000             🧑  作者: Mango

代码示例1
String.Format("{0:n}", 1234);  // Output: 1,234.00
String.Format("{0:n0}", 9876); // No digits after the decimal point. Output: 9,876