必威体育Betway必威体育官网
当前位置:首页 > IT技术

KeyValuePair 和 Dictionary 的关系

时间:2019-08-29 15:40:00来源:IT技术作者:seo实验室小编阅读:74次「手机版」
 

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

  1. Dictionary<int, string> myDic = new Dictionary<int, string>();  
  2. foreach (KeyValuePair<int, string> item in myDic)  
  3. {  
  4.     console.WriteLine("Key = {0}, Value = {1}", item.Key, item.Value);  

相关阅读

分享到:

栏目导航

推荐阅读

热门阅读