标签:命名空间 -- ati 程序 ogr sys stat system 写法
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 } } }
运行键为:
运行结果为
标签:命名空间 -- ati 程序 ogr sys stat system 写法
原文地址:https://www.cnblogs.com/wangqiangya/p/13040507.html