using System; |
using System.Collections.Generic; |
namespace Helloworld |
{ |
class Program |
{ |
static void Main( string [] args) |
{ |
Console.WriteLine( "Hello world!" ); //在显示器上输出 |
Console.ReadLine(); |
} |
} |
} |