在C#中,KeyValuePair<TKey, TValue> 是一种表示键值对的结构体。它定义了两个属性,Key和Value,分别表示键和值。
KeyValuePair<TKey, TValue>可以用于以下几种情况:
Dictionary<string, int> dict = new Dictionary<string, int>();
dict.Add("apple", 1);
dict.Add("orange", 2);
foreach (KeyValuePair<string, int> kvp in dict)
{
Console.WriteLine("Key: " + kvp.Key + ", Value: " + kvp.Value);
}
输出结果:
Key: apple, Value: 1
Key: orange, Value: 2
public KeyValuePair<string, int> GetMaxValue(Dictionary<string, int> dict)
{
KeyValuePair<string, int> maxKvp = new KeyValuePair<string, int>(null, int.MinValue);
foreach (KeyValuePair<string, int> kvp in dict)
{
if (kvp.Value > maxKvp.Value)
{
maxKvp = kvp;
}
}
return maxKvp;
}
var dict = new Dictionary<string, int>()
{
{ "apple", 1 },
{ "orange", 2 },
{ "banana", 3 },
{ "grape", 4 }
};
var sortedDict = dict.OrderBy(kvp => kvp.Value);
foreach (KeyValuePair<string, int> kvp in sortedDict)
{
Console.WriteLine("Key: " + kvp.Key + ", Value: " + kvp.Value);
}
输出结果:
Key: apple, Value: 1
Key: orange, Value: 2
Key: banana, Value: 3
Key: grape, Value: 4
总之,KeyValuePair<TKey, TValue>可以用于表示键值对,并且可以在循环、方法参数、返回值以及LINQ查询中使用。