2014-02-04 c# 陣列 四種宣告方式 4646 0 C# 摘要:c# 陣列 四種宣告方式 int[] iarray = new int[50]; int[] lottery = new int[7] { 4, 5, 6, 7, 8, 9, 10 }; string[] sName = new string[] { "chris" , "allen"}; string[] sStudent = { "chris", "davin" }; 回首頁