« C#学习之路启程了AssemblyInfo.cs文件的作用(转) »

hello world in c#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class HelloWorld
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World");
            Console.ReadLine();
    
        }
    }
}
 

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。