C# 程式地圖 Dictionary
//程式地圖
//int
var dicInt = new Dictionary<int ,string>(); //建立物件
dicInt.Add(3 ,"aaa"); //加入資訊
dicInt.Add(8 ,"ZZZ"); //加入資訊
string aInt3 = dicInt[3]; //提取資料 //aaa
string aInt8 = dicInt[8]; //提取資料 //ZZZ
//string
var dicStr = new Dictionary<string ,string>(); //建立物件
dicStr.Add("a" ,"kkk"); //加入資訊
string aStra = dicStr["a"]; //提取資料 //kkk
//List
var dicList = new Dictionary<int ,List<string>>(); //建立物件
dicList.Add(5 ,new List<string> { "AA" ,"BB" }); //加入資訊
List<string> aList = dicList[5]; //提取資料 //"AA" ,"BB"
我只是一棵樹