hellow world

using System;  //引用system命名空间


namespace mytest  //namespace 空间命名
{
    class Program  //Program 类,包含多个方法,比如main
    {
        static void Main(string[] args)  //具体的方法
        {
            /*第一个程序包*/
            Console.WriteLine("Hellow World");  //行为
                Console.ReadLine();     //等待按键操作,防治闪退
        }
    }
}
 

猜你喜欢

转载自blog.csdn.net/time_forgotten/article/details/88814165