1. 程式人生 > >快速學習——3、程式結構+註釋+關鍵字

快速學習——3、程式結構+註釋+關鍵字

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

//庫Dll引用,後幾章講

namespace HelloWorld    //名稱空間
{
    //類  類名
    class Program
    {   
        static void Main(string[] args) //Main方法,程式入口,從這裡開始執行
        {

            Console.WriteLine("Hello Timor");   //所寫的程式碼
            Console.ReadLine();
        }
    }
}

//單行註釋  多行註釋

//註釋語句,其實就是不被執行的程式碼
//一個好的註釋,會事半功倍。

/* 這裡也是註釋  */

///我是多行註釋
///

自己去百度C# 關鍵字,要會讀會寫,事件長了就熟練了。

關鍵字,就是系統內建的幾個單詞,不能改變。

沒多少單詞,現在用的少10幾個左右,後期會增多。

我先寫一些 ,比用,常用的。

// class namespace using int float bool double if do while for 

先寫這些 ,後期學到那個,再用