keyvaluepair
KeyValuePair 和 Dictionary 的关系
1、KeyValuePair
a、KeyValuePair 是一个结构体(struct);
b、KeyValuePair 只包含一个Key、Value的键值对。
2、Dictionary
a、Dictionary 可以简单的看作是KeyValuePair 的集合;
b、Dictionary 可以包含多个Key、Value的键值对。
下面的代码可能会帮助更好的理解它们之间的关系:
[csharp] view plain copy
- Dictionary<int, string> myDic = new Dictionary<int, string>();
- foreach (KeyValuePair<int, string> item in myDic)
- {
- console.WriteLine("Key = {0}, Value = {1}", item.Key, item.Value);
- }