Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: .NET String.Format() 为数字添加千位逗号
我有一个int传递给视图的,它需要格式化,所以它不是一大块数字。例如
int
0 00 000 000,0 000,000 000,000,000
我如何使用 for 循环来做到这一点?
谢谢
您可能希望将整数输出为i.ToString("###,###,###");
i.ToString("###,###,###");
但是,如果 int 为 0,则不会显示值。
您可以尝试使用 System.Drawing.Color 来表示颜色值而不是 int。这有一个方法 ToArgb()