[C#] Dictionary 取值與賦值操作
取出Key - 依排序索引dict.Keys.ElementAt(i);以下兩種方法都可以取Valueobject objValue = dict.Values.ElementAt(i);object objValue = dict;擴展以上方法取Valueobject objValue = dict;賦值方法則有這兩種string sValue = "A";dict = sValue;string sValue = "A";
dict = sValue;
頁:
[1]