2014年1月17日 星期五

[C#] Hello World


[新增專案]->[主控台應用程式]

// 以下自動生成,只要手寫兩行秀字&讀key

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;



namespace HelloWorld // 依專案名稱

{

    class Program

    {

        static void Main(string[] args)

        {

            // 兩行解決

            Console.WriteLine("Hello World");

            Console.ReadKey();

        }

    }

}

沒有留言: