這裡主要看一下Hello World代碼 ...
這裡主要看一下Hello World代碼
// 單行註釋 /* 多行註釋 */ /// XML文檔註釋 using System; // 包含命名空間,類似PHP的use using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 // 聲明命名空間 { class Progra //聲明一個Program類 { // Main方法,所有C#程式入口,一個C#程式中有且只有一個Main方法,“Main”方法必須放在任意一個類中。對於被調用的“Main”方法來說,它所在的類不需要被實例化。
/* *static 返回值類型 *void 返回值 *Main 方法名 *args 方法參數,為一個字元串數組 */ static void Main(string[] args) { // System命名空間Console類調用類方法WriteLine()方法,輸出hello world Console.WriteLine("hello world"); // 控制台程式,執行完了就會終止,速度很快,看不到結果;所以加上這句代碼,結束前等待按鍵 Console.ReadKey(); /* 註:* C#是大小寫敏感的 * 所有語句和表達式必須以分號結尾 * 程式執行從main方法開始 * 與java不同,文件名可以不同於類的名稱 */ } } }