VS2017下第一个C#控制台程序helloworld

1. VS2017中安装C#

2. 创建C#控制台程序

3. 填入C#第一个程序代码

仅添加两行,

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp001
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello,world");
            Console.ReadKey();

        }
    }
}

4.运行结果

 

你可能感兴趣的:(C#,c#)