Hello,World

  今天我的博客开通了,庆祝一下,附上我写的第一个.NET程序 “Hello,World”

 

using System;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(
"Hello,World");
Console.ReadKey();
}
}
}

 

posted @ 2011-01-15 16:02  schen  阅读(152)  评论(0)    收藏  举报