using System;
namespace Hello_World
{
/// <summary>
/// Class1 的摘要說明。
/// </summary>
using C = System.Console;
class MainApp
{
/// <summary>
/// 應用程序的主入口點。
/// </summary>
[STAThread]
static void Main(string[] args)
{
//
// TODO: 在此處添加代碼以啟動應用程序
//
C.WriteLine("Hello World");
}
}
}