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 }
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 }