c#字典遍历使用的方法是什么

c#
722
2023/12/13 23:34:33
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在C#中,遍历字典的方法有以下几种:

  1. 使用foreach循环遍历字典中的键值对:
Dictionary<string, int> dict = new Dictionary<string, int>();

foreach (KeyValuePair<string, int> kvp in dict)
{
    string key = kvp.Key;
    int value = kvp.Value;
    Console.WriteLine("Key: {0}, Value: {1}", key, value);
}
  1. 使用foreach循环遍历字典中的键:
Dictionary<string, int> dict = new Dictionary<string, int>();

foreach (string key in dict.Keys)
{
    int value = dict[key];
    Console.WriteLine("Key: {0}, Value: {1}", key, value);
}
  1. 使用foreach循环遍历字典中的值:
Dictionary<string, int> dict = new Dictionary<string, int>();

foreach (int value in dict.Values)
{
    Console.WriteLine("Value: {0}", value);
}
  1. 使用LINQ查询表达式遍历字典中的键值对:
Dictionary<string, int> dict = new Dictionary<string, int>();

var query = from kvp in dict
            select kvp;

foreach (var kvp in query)
{
    string key = kvp.Key;
    int value = kvp.Value;
    Console.WriteLine("Key: {0}, Value: {1}", key, value);
}

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: C#中怎么定义和使用属性