The first C# program

来源:互联网 发布:三维文字制作软件 编辑:程序博客网 时间:2024/06/18 12:26
using System;namespace helloWord{    class Program    {        static void Main(string[] args)        {            Console.WriteLine("Hellow World!");            Console.ReadLine();        }    }}

0 0