using System;//using 引入的意思 System命名空间 using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ant { class Program//类 { static void Main(string[] args)//有四种写法 { //名命空间--类--方法(还包括其他成员) Console.WriteLine("Hello word!"); Console.Read();//暂停 --ctrl+F5 } } }
运行键为:
运行结果为