📄 3.3.txt
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -