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.运行结果

本文介绍了在VS2017中安装C#,创建C#控制台程序,填入第一个程序代码,代码包含多个using语句及主函数,主函数中输出Hello,world并等待按键,最后展示了运行结果。
1003

被折叠的 条评论
为什么被折叠?



