The first C# program

Posted 南笙一梦

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了The first C# program相关的知识,希望对你有一定的参考价值。

using System;

namespace helloWord

    class Program
    
        static void Main(string[] args)
        
            Console.WriteLine("Hellow World!");
            Console.ReadLine();
        
    

以上是关于The first C# program的主要内容,如果未能解决你的问题,请参考以下文章