C#第一堂课

using System;

namespace HelloWorldApplication

{

/
类名为 HelloWorld /

class HelloWorld

{

/
main函数 /

static void Main(string[] args)

{

/
我的第一个 C# 程序 /

Console.WriteLine(“Hello World!”);

Console.ReadKey();

}

}

}