欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Console.WriteLine()方法

程序员文章站 2022-03-02 13:04:36
...
using System;//导入System命名空间
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp1//声明命名空间
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("{0},{1},{2},{1}", "a", "b", "c");
            Console.ReadLine();
        }
    }
}

输出结果:
a,b,c,b