whitefox 發表於 2023-6-9 10:48:27

[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]
查看完整版本: [C#] Dictionary 取值與賦值操作