第三章:程序结构
Posted wangqiangya
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第三章:程序结构相关的知识,希望对你有一定的参考价值。
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 } } }
运行键为:
运行结果为
以上是关于第三章:程序结构的主要内容,如果未能解决你的问题,请参考以下文章