C 中dictionary的使用

2022-06-01 20:54:08 字數 791 閱讀 4449

在c#中,dictionary提供快速的基於鍵值的元素查詢。

他的結構是:dictionary<[key], [value]> ,當有很多元素的時候可以使用它。使用前,必須宣告它的鍵型別和值型別,如下。

dictionary dictionary= new dictionary();

新增資料

if (!plist.containskey("

item1

"))

plist.add(

"item1

", "

zhejiang

");

刪除資料

mydictionary.remove(key);

根據key獲取value

string value=dictionary[key];

遍歷資料

foreach (var

node in dictionary)

遍歷key

foreach (var key in

dictionary.keys)

", key);

}

遍歷value

foreach (string value in

dictionary.values)

", value);

}

C 字典(Dictionary)的使用

private dictionarypanelcach new dictionary private nbasepanel getpanel uipaneltype paneltype 例項化面板預製物 instpanel gameobject.instantiate resources.load ...

C 中的Dictionary簡介

簡介 在c 中,dictionary提供快速的基於鍵值的元素查詢。當你有很多元素的時候可以使用它。它包含在system.collections.generic名空間中。在使用前,你必須宣告它的鍵型別和值型別。詳細說明 必須包含名空間system.collection.generic dictiona...

C 中的Dictionary簡介

簡介 在c 中,dictionary提供快速的基於鍵值的元素查詢。當你有很多元素的時候可以使用它。它包含在system.collections.generic名空間中。在使用前,你必須宣告它的鍵型別和值型別。詳細說明 必須包含名空間system.collection.generic dictiona...