阅读量:0
在C#中,可以使用foreach
循环来遍历字典。以下是一些最高效的方法来遍历字典:
- 使用
foreach
循环:
Dictionary<string, int> dict = new Dictionary<string, int>(); foreach (var item in dict) { Console.WriteLine($"{item.Key} : {item.Value}"); }
- 使用
KeyValuePair
:
Dictionary<string, int> dict = new Dictionary<string, int>(); foreach (KeyValuePair<string, int> kvp in dict) { Console.WriteLine($"{kvp.Key} : {kvp.Value}"); }
- 使用
GetEnumerator()
方法和while
循环:
Dictionary<string, int> dict = new Dictionary<string, int>(); var enumerator = dict.GetEnumerator(); while (enumerator.MoveNext()) { Console.WriteLine($"{enumerator.Current.Key} : {enumerator.Current.Value}"); }
这些方法都是高效的遍历字典的方式,但根据具体需求和代码结构,可以选择最适合的方法来遍历字典。