我的第一个C#程序!

[入库:2005年8月18日] [更新:2007年3月24日]

本文简介:选择自 love040309 的 blog

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

本文关键:我的第一个C#程序!
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top