格式说明符的语法
对齐说明符正数表示右对齐,负数表示左对齐。如果要表示的字符数比对齐说明符中指定的数少,会用空格填充;如果多了,就会被忽略掉。
1staticvoidMain(string[] args)2{3vartemp =1000;4Console.WriteLine("|{0,10}|", temp);5Console.WriteLine("|{0,-10}|", temp);6Console.WriteLine("|{0,3}|", temp);7}
格式字段
1vartemp =123.456789;2Console.WriteLine("{0:F3}", temp);//定点,保留小数位数3Console.WriteLine("{0:C}", temp);//表示货币,取决于PC的区域设置4Console.WriteLine("{0:D10}",123);//十进制数5Console.WriteLine("{0:G4}", temp);//根据说明符保留“数字长度”,最后一位四舍五入6Console.WriteLine("{0:X}",123);//转16进制(区分大小写)7Console.WriteLine("{0:N4}",1234567,890123);//用逗号分隔数字8Console.WriteLine("{0:P}", temp);//百分比9Console.WriteLine("{0:R}", temp);//保留小数10Console.WriteLine("{0:E3}", temp);//科学计数法(区分大小写)