{0}
下面一个例子可以更直观的说明作用
{
class Program
{
static void Main(string[] args)
{
int a = 1;
int b = 2;
int c = 3;
Console.WriteLine("{0}{1}{2}",a,b,c);
Console.WriteLine("{1}{2}", a, b, c);
//Console.WriteLine("{0}{1}{2}", b, c); //错误占了三个位置却只有两个值输出
Console.WriteLine("{0}{1}{2}{0}{1}{2}{0}{1}{2}", a, b, c);
Console.WriteLine("{0}{1}{2}", b, a, c);
Console.WriteLine("{0},{1},{2}", a, b, c);
Console.WriteLine("{0} {1} {2}", a, b, c);
Console.WriteLine("{0}-{1}-{2}", a, b, c);
Console.ReadLine();
}
}
}
运行结果如下:
相关阅读
C#入门——Console.Write()与Console.WriteLine()
两者区别:Console.Write(“abc”); 输出到控制台中,且在最后位置不换行,参数至少有一个以上。Console.WriteLine();输出到控制台
Console是外部发送的统一接口,ConsoleDev是具体实现的设备的代码,以下是结构
区别Console.readkey()、 Console.read()、Console.re
Console.readkey():监听键盘事件,按任意键执行退出。 Console.read():读取键盘输入的第一个字符,返回ASCII值。按下回车键退出 Cons
Console.WriteLine()表示向控制台写入字符串后换行。Console.WriteLine("鹿鼎记中的{0}的妻子有{1}、{2}、{3}等7个",strName[0],
using System;//导入System命名空间 using System.Collections.Generic; using System.Linq; using System.Text; using System.T