本文介绍了什么是遍历字典在C#中的最佳方式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经看到了一些不同的方法来遍历字典在C#。有没有一个标准的方式?
解决方案
的foreach(KeyValuePair<字符串,字符串>在myDic进入)
{
//做点什么entry.Value或entry.Key
}
I've seen a few different ways to iterate over a Dictionary in C#. Is there a standard way?
解决方案
foreach(KeyValuePair<string, string> entry in myDic)
{
// do something with entry.Value or entry.Key
}
这篇关于什么是遍历字典在C#中的最佳方式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!