說明
必須包含名空間system.collection.generic
dictionary裡面的每乙個元素都是乙個鍵值對(由二個元素組成:鍵和值)
鍵必須是唯一的,而值不需要唯一的
鍵和值都可以是任何型別(比如:string, int, 自定義型別,等等)
通過乙個鍵讀取乙個值的時間是接近o(1)
鍵值對之間的偏序可以不定義
使用方法
:
//dictionaryplist = new dictionary();
"aaa");
"bbb");
"ccc");
"ddd");
dictionaryplist = new dictionary, ,
, };
int key = 2;
if (plist.containskey(key))
return;
詳細資訊補充:
C 字典 Dictionary 用法
dictionary提供快速的基於鍵值的元素查詢。結構是 dictionary 當你有很多元素的時候可以用它。它包含在system.collections.generic名控制項中。在使用前,你必須宣告它的鍵型別和值型別。1 using system 2 using system.collectio...
C 字典 Dictionary 用法
dictionary提供快速的基於鍵值的元素查詢。結構是 dictionary key value 當你有很多元素的時候可以用它。它包含在system.collections.generic名控制項中。在使用前,你必須宣告它的鍵型別和值型別。using system using system.col...
Dictionary的基本用法
1.建立泛型雜湊表,然後加入元素 dictionary string string openwith newdictionary string string openwith.add txt notepad.exe openwith.add bmp paint.exe openwith.add di...