C Sharp 初探 安裝Visual Studio 2012 網址:http://www.microsoft.com/visualstudio/cht/downloads#d-express-windows-deskto 1.安裝畫面如下圖所示 2.開啟應用程式: 選擇C#的開發設定 3. 開啟Visual Stdio 視窗畫面 4. 建立新的Console專案 名稱為: MyFirstCode 5.撰寫第一個程式,撰寫後按下Ctrl+F5,顯示結果 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyFistCode { class Program { static void Main(string[] args) { //撰寫第一個程式 System.Console.WriteLine("This is my first program") ; } } } 6. 說明: ...