便宜VPS主机精选
提供服务器主机评测信息

如何在C#中使用KeyValuePair轻松获取键值对数据

在C#中,你可以使用KeyValuePair类来表示一个键值对。要获取KeyValuePair中的值,你可以使用Value属性。以下是一个简单的示例:

using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        // 创建一个KeyValuePair列表
        List<KeyValuePair<string, int>> keyValuePairs = new List<KeyValuePair<string, int>>
        {
            new KeyValuePair<string, int>("apple", 1),
            new KeyValuePair<string, int>("banana", 2),
            new KeyValuePair<string, int>("orange", 3)
        };

        // 遍历列表并获取每个键值对的值
        foreach (KeyValuePair<string, int> pair in keyValuePairs)
        {
            Console.WriteLine($"Key: {pair.Key}, Value: {pair.Value}");
        }
    }
}

在这个示例中,我们创建了一个KeyValuePair<string, int>列表,其中包含三个键值对。然后,我们遍历列表并使用Value属性获取每个键值对的值。输出将如下所示:

Key: apple, Value: 1
Key: banana, Value: 2
Key: orange, Value: 3

未经允许不得转载:便宜VPS测评 » 如何在C#中使用KeyValuePair轻松获取键值对数据