C#第一堂课

using System;
namespace HelloWorldApplication
{
/ 类名为 HelloWorld /
class HelloWorld
{
/ main函数 /
static void Main(string[] args)
{
/ 我的第一个 C# 程序 /
Console.WriteLine("Hello World!");
Console.ReadKey();
}
}
}

猜你喜欢

转载自blog.51cto.com/13842786/2391816