C# helloWorld

C# helloWorld
/**/ /*
 * 由 SharpDevelop 创建。
 * 用户: Administrator
 * 日期: 2010-3-2
 * 时间: 12:30
 * 
 * 如果你想要更改该模板,那么请使用“工具 | 选项 | 编辑 | 编辑标准标题”。
 
*/

 
using  System;
 
using  System.Threading;
 
public   class  test
 
{
     
public static void Main()
     
{
         Console.WriteLine(
"Hello World!");
         Thread.Sleep(
3000);
     }

 }


你可能感兴趣的:(C# helloWorld)