using System;namespace HelloWorld
{
class Class1
{ [STAThread]
static void Main(string[] args)
{
System.Console.Write("Hello World")
}
}
}

解决方案 »

  1.   

    少了分号System.Console.Write("Hello World")改为:System.Console.Write("Hello World");
      

  2.   

    估计楼主郁闷到了
    这个事情有原因
    http://community.csdn.net/Expert/topic/4517/4517204.xml?temp=.3661157
      

  3.   

    少了分号System.Console.Write("Hello World")改为:System.Console.Write("Hello World");接分~~
      

  4.   

    using System;namespace HelloWorld
    {
    class Class1
    {[STAThread]
    static void Main(string[] args)
    {
    System.Console.Write("Hello World");
    }
    }
    }
      

  5.   

    using System;namespace HelloWorld
    {
       class Class1
       {      [STAThread]
          static void Main(string[] args)
          {
             System.Console.Write("Hello World");
          }
       }
    }