1.要使用Dictionary集合,需要導入C#泛型命名空間
##
System.Collections.Generic //程序集:mscorlib
Key和Value可以是任何型別(string,int,custom class 等)
建立及初始化
Dictionary<int,string> myDictionary=new Dictionary<int,string>();
新增元素
#
myDictionary.Add(1,"C#"); myDictionary.Add(2,"C++"); myDictionary.Add(3,"ASP.NET"); myDictionary.Add(4,"MVC");
透過Key尋找元素
#
if(myDictionary.ContainsKey(1)) { Console.WriteLine("Key:{0},Value:{1}","1", myDictionary[1]); }
透過KeyValuePair遍歷元素
foreach(KeyValuePair<int,string> kvp in myDictionary) { Console.WriteLine("Key = {0}, Value = {1}",kvp.Key, kvp.Value); }
Dictionary<int,string>.KeyCollection keyCol = myDictionary.Keys;foreach(intkeyinkeyCol) { Console.WriteLine("Key = {0}", key); }
Dictionary<int,string>.ValueCollection valueCol = myDictionary.Values;foreach(stringvalueinvalueCol) { Console.WriteLine("Value = {0}", value); }
myDictionary.Remove(1);if(myDictionary.ContainsKey(1)) { Console.WriteLine("Key:{0},Value:{1}","1", myDictionary[1]); }else{ Console.WriteLine("不存在 Key : 1"); }
Comparer: // 获取用于确定字典中的键是否相等的 IEqualityComparer。 Count: // 获取包含在 Dictionary中的键/值对的数目。 Item: //获取或设置与指定的键相关联的值。 Keys: // 获取包含 Dictionary中的键的集合。 Values: // 获取包含 Dictionary中的值的集合。 Add: // 将指定的键和值添加到字典中。 Clear: //从 Dictionary中移除所有的键和值。 ContainsKey: //确定 Dictionary是否包含指定的键。 ContainsValue: //确定 Dictionary是否包含特定值。 GetEnumerator: // 返回循环访问 Dictionary的枚举数。 GetType: // 获取当前实例的 Type。 (从 Object 继承。) Remove: //从 Dictionary中移除所指定的键的值。 ToString: //返回表示当前 Object的 String。 (从 Object 继承。) TryGetValue: //获取与指定的键相关联的值。
以上是C#中關於Dictionary的用法詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!