我的第一个C#程序!

using System;

namespace Hello_World
{
///

1<summary>   
2/// Class1 的摘要说明。   
3/// </summary>

using C = System.Console;
class MainApp
{

///

1<summary>   
2/// 应用程序的主入口点。   
3/// </summary>

[STAThread]
static void Main(string[] args)
{
//
// TODO: 在此处添加代码以启动应用程序
//
C.WriteLine("Hello World");
}
}
}

Published At
Categories with Web编程
Tagged with
comments powered by Disqus