c#string转浮点数_C#使⽤String.Format()⽅法使⽤千位分
隔符打印浮点数
c#string转浮点数
To print a float number with thousand separators, we can use String.Format() method, here is the example.
要打印带有⼀千个分隔符的浮点数,我们可以使⽤String.Format()⽅法,这⾥是⽰例。
using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
writeline使用方法python{
//Thousand separator
Console.WriteLine("Thousand Separators");
Console.WriteLine(String.Format("{0:0,0.0}", 9876.67));
Console.WriteLine(String.Format("{0:0,0}", 9876.67));
Console.WriteLine(String.Format("{0:0,0.0}", 987654321.67));
Console.WriteLine(String.Format("{0:0,0}", 987654321.67));
Console.WriteLine();
}
}
}
Output
输出量
Thousand Separators
9,876.7
9,877
987,654,321.7
987,654,322
翻译⾃:
c#string转浮点数

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。