C Sharp 初探
- 安裝Visual Studio 2012
網址:http://www.microsoft.com/visualstudio/cht/downloads#d-express-windows-deskto 1.安裝畫面如下圖所示
3. 開啟Visual Stdio 視窗畫面
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"); } } } |
當我們在寫程式時,會自動出現小視窗來讓我們選擇關鍵字或是其他函式。
這種我們稱為IntelliSense,它可以幫助你提升程式的開發速度與時間
1)using關鍵字用來載入命名空間方便開發程式所需要的函式或是類別,微軟官方的
開頭常用system來表示。
2)Namespaces(命名空間)這是一個很重要的議題,當我們開發很大的專案時,會
出現當很多方法、類別名稱可能都會重覆,所以希望避免重覆的情況下,可以用
不同的命名空間來讓他不會相互搞混。
3) 宣告Main() 方法必定是static的型別,它為主程式的進入點(entry point),告訴系統
如何該程式開始執行的地方與位址。
7.程式的基本架構
using {命名空間1}.{命名空間2}.{命名空間3}
namespace 該程式命名空間
{
class 程式名稱
{
static void Main(string[] args)
{
//程式進入點,也就是程式執行的地方
}
}
}
留言
張貼留言