Dictionary遍历 C#中Dictionary几种遍历的实现代码
人气:0想了解C#中Dictionary几种遍历的实现代码的相关内容吗,在本文为您仔细讲解Dictionary遍历的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Dictionary遍历,下面大家一起来学习吧。
复制代码 代码如下:
Dictionary<string,string> list=new Dictionary<string,string>;
//3.0以上版本
foreach(var item in list)
{
Console.WriteLine(item.Key+item.Value);
}
//KeyValuePair<T,K>
foreach(KeyValuePair<string,string> kv in list)
{
Console.WriteLine(kv.Key+kv.Value);
}
//通过键的集合取
foreach(string key in list.Keys)
{
Console.WriteLine(key+list[key]);
}
//for循环遍历
List<string> test=new List<string>(list.Keys);
for(int i=0;i<list.Count;i++)
{
Console.WriteLine(test[i]+list[test[i]]);
}
加载全部内容