using System; //using引入的意思, System命名空间
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
// 命名空间--类--方法
namespace Ant1 //命名空间
{
class Program //类
{
//入口方法
static void Main(string[] args)
{
Console.WriteLine("Hello word!"); //打印输出hello word
Console.Read(); //展示窗口
}
}
}