C#入门 Hello World
2021-03-20 11:24
标签:直接 http EAP linq ace 入口 name code ctrl C#入门 Hello World 标签:直接 http EAP linq ace 入口 name code ctrl 原文地址:https://www.cnblogs.com/xcfxcf/p/12306435.html 1 //导入微软提供的命名空间,以便使用
2 using System;
3 using System.Collections.Generic;
4 using System.Linq;
5 using System.Text;
6 using System.Threading.Tasks;
7
8 namespace ConsoleApp2//命名空间
9 {
10 class Program//类
11 {
12 static void Main(string[] args)//Main方法 程序入口
13 {
14 Console.Write("Hello World!"); //命令 以分号结束
15 //Ctrl + F5直接运行
16 //F5调试
17 }
18 }
19 }
下一篇:【WPF学习】第三十八章 行为