在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