源代码:
点击运行 》
using System; namespace HelloWorldApplication { class HelloWorld { static void Main(string[] args) { /* 我的第一个 C# 程序*/ Console.WriteLine("Hello World!"); Console.ReadKey(); } } }
运行结果: