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");
}
}
}