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

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

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

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

        }


ok,输出的就是helloword!!!
posted @ 2022-08-11 18:52  码海兴辰  阅读(21)  评论(0编辑  收藏  举报