标签:ogr border log 为知笔记 运行 com 占位符 技术分享 .com
使用方法:先挖个坑,再填个坑.
namespace _08.占位符
{
class Program
{
static void Main(string[] args)
{
int n1 = 10;
int n2 = 20;
int n3 = 30;
//普通写法
Console.WriteLine("第一个数字是:"+n1+",第二个数字是:"+n2+",第三个数字是:"+n3);
//占位符写法
Console.WriteLine("第一个数字是:{0},第二个数字是:{1},第三个数字是:{2}", n1, n2, n3);
Console.ReadKey();
}
}
标签:ogr border log 为知笔记 运行 com 占位符 技术分享 .com
原文地址:http://www.cnblogs.com/HelloZyjS/p/5994650.html