溫馨提示×

c# keyvaluepair如何獲取

c#
小樊
81
2024-11-20 06:31:08
欄目: 編程語言

在C#中,你可以使用KeyValuePair類來表示一個鍵值對。要獲取KeyValuePair中的值,你可以使用Value屬性。以下是一個簡單的示例:

using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        // 創(chuàng)建一個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}");
        }
    }
}

在這個示例中,我們創(chuàng)建了一個KeyValuePair<string, int>列表,其中包含三個鍵值對。然后,我們遍歷列表并使用Value屬性獲取每個鍵值對的值。輸出將如下所示:

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

0