[training]ASP.NET MVC 5 – C# 基本語法1

Console.WriteLine()	秀畫面並換行;
Console.Write()		秀畫面;

========================

Console.Write(string.Format("{0}*{1}={2:00}\t", j, i, j * i));
//類矩陣的方式,定義每個值的顯示方式



========================

foreach (string name in nameList) 
//設一個變數name去接矩陣nameList裡的每個值
            {
                Console.WriteLine(name);
            }

========================

try()		正常執行的程式
catch()		發生例外時執行的程式
finally()	不管怎樣最後都會執行的程式
//不捕捉例外雖然還是可能會出現錯誤說明,
//但會造成程式接下來就意外結束

========================

LINQ (Language-Integrated Query): 是Windows於.NET Framework所新增的資料查詢語法,目的是為了改進對不同資料來源(SQL、XML、.NET DataSet等)所產生的語言整合查詢功能。

Leave a Comment

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.