2015年12月30日 星期三

C# - Hello, World

以軟體 Microsoft Virtual C# 寫一個主控台並印出「Hello, World」。

##ReadMore##
檔案 → 新增專案 → 主控台應用程式 → 撰寫 Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Lesson_A._1
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello, World");
            Console.Read();
        }
    }
}





沒有留言:

張貼留言