3.3.txt

来自「《Microsoft Visual C# .NET 2003开发技巧大全》源代码」· 文本 代码 · 共 19 行

TXT
19
字号
Listing 3.3 Using Picture Format Specifiers to Create Special Formats
using System;
namespace _2_Formatting
{
class Class1
{
[STAThread]
static void Main(string[] args)
{
double[] numArray = {2, 5, 4.5, 45.43, 200000};
// format as custom
Console.WriteLine( “\n\nCustom\n------” );
foreach( double num in numArray )
{
Console.WriteLine( “{0:$#,# + $.#0;} = {0:$#,#.00}”, num );
}
}
}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?