C#:第一个C#的程序helloword

本人以前在一家公司做过C#的项目,所以来给初学者分享分享
第一个helloword

写一个c#的项目 ,我们常常用到微软的visual studio
建一个项目:

static  void  Main( string [] args)
         {
             Console.WriteLine( "HELLO WORLD" );
             Console.ReadLine();

        }


ok,输出的就是helloword!!!

猜你喜欢

转载自blog.csdn.net/lrxmrlirixing/article/details/80856561