尝试N0
没有小数部分:
string formatted = a.ToString("N0"); // 10,000,000
Willy David .. 8
你也可以做String.Format:
int x = 100000; string y = string.Empty; y = string.Format("{0:#,##0.##}", x); //Will output: 100,000
如果你有小数,相同的代码将输出2位小数:
double x = 100000.2333; string y = string.Empty; y = string.Format("{0:#,##0.##}", x); //Will output: 100,000.23
要使用逗号而不是十进制使用此:
double x = 100000.2333; string y = string.Empty; y = string.Format(System.Globalization.CultureInfo.GetCultureInfo("de-DE"), "{0:#,##0.##}", x);
lc... 7
a.ToString("N0")
另请参阅:MSDN中的标准数字格式字符串
尝试N0
没有小数部分:
string formatted = a.ToString("N0"); // 10,000,000
你也可以做String.Format:
int x = 100000; string y = string.Empty; y = string.Format("{0:#,##0.##}", x); //Will output: 100,000
如果你有小数,相同的代码将输出2位小数:
double x = 100000.2333; string y = string.Empty; y = string.Format("{0:#,##0.##}", x); //Will output: 100,000.23
要使用逗号而不是十进制使用此:
double x = 100000.2333; string y = string.Empty; y = string.Format(System.Globalization.CultureInfo.GetCultureInfo("de-DE"), "{0:#,##0.##}", x);
a.ToString("N0")
另请参阅:MSDN中的标准数字格式字符串