TA贡献1805条经验 获得超9个赞
String.Format("{0:n}", 1234); // Output: 1,234.00String.Format("{0:n0}", 9876); // No digits after the decimal point. Output: 9,876
TA贡献1998条经验 获得超6个赞
我发现这是最简单的方法:
myInteger.ToString("N0")
举报