String.Format("{0:n}", 1234); // Output: 1,234.00String.Format("{0:n0}", 9876); // No digits after the decimal point. Output: 9,876
欢迎分享,转载请注明来源:内存溢出
String.Format("{0:n}", 1234); // Output: 1,234.00String.Format("{0:n0}", 9876); // No digits after the decimal point. Output: 9,876
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)