HelloWorld入门程序

 1 using System;//引入命名空间
 2 namespace HelloWorldApplication //命名空间
 3 {
 4    class HelloWorld //类名
 5    {
 6       static void Main(string[] args)  //主函数
 7       {
 8          /* 我的第一个 C# 程序*/
 9          Console.WriteLine("Hello World");
10          Console.ReadKey();
11       }
12    }
13 }

 

posted on 2017-09-05 12:58  stringAdmin  阅读(365)  评论(0)    收藏  举报

导航