温馨提示×

如何遍历C#中的字典

c#
小樊
88
2024-09-11 10:26:26
栏目: 编程语言

在C#中,可以使用foreach循环来遍历字典(Dictionary)

using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        // 创建一个字典实例
        Dictionary<string, int> dictionary = new Dictionary<string, int>();
        
        // 向字典中添加元素
        dictionary.Add("apple", 1);
        dictionary.Add("banana", 2);
        dictionary.Add("orange", 3);

        // 使用 foreach 循环遍历字典
        foreach (KeyValuePair<string, int> entry in dictionary)
        {
            Console.WriteLine($"Key: {entry.Key}, Value: {entry.Value}");
        }
    }
}

在这个示例中,我们首先创建了一个名为dictionary的字典实例,然后向其中添加了三个元素。接下来,我们使用foreach循环遍历字典。在循环内部,我们可以访问当前键值对的键和值。最后,我们使用Console.WriteLine()输出每个键值对的信息。

0