在C#中,KeyValuePair是一種泛型結構,用于存儲鍵值對數據。它可以將一個鍵和一個值關聯在一起,并且允許同時訪問鍵和值。KeyValuePair通常用于在字典或集合中存儲數據。
下面是一個示例,演示了如何使用KeyValuePair:
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
// 創建一個KeyValuePair
KeyValuePair<int, string> pair = new KeyValuePair<int, string>(1, "apple");
// 訪問鍵和值
Console.WriteLine($"Key: {pair.Key}, Value: {pair.Value}");
// 在字典中使用KeyValuePair
Dictionary<int, string> dict = new Dictionary<int, string>();
dict.Add(pair.Key, pair.Value);
foreach (KeyValuePair<int, string> kvp in dict)
{
Console.WriteLine($"Key: {kvp.Key}, Value: {kvp.Value}");
}
}
}
在上面的示例中,我們首先創建了一個KeyValuePair對象,然后訪問了其鍵和值。接著,我們將KeyValuePair對象添加到一個字典中,并通過foreach循環遍歷字典中的所有KeyValuePair。KeyValuePair提供了一種方便的方式來處理鍵值對數據。