Dictionary的遍历总结
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Dictionary的遍历总结相关的知识,希望对你有一定的参考价值。
Dictionary<string,string> list=new Dictionary<string,string>;
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]); }
以上是关于Dictionary的遍历总结的主要内容,如果未能解决你的问题,请参考以下文章