在C#中,DictionaryEntry结构用于表示Dictionary<TKey, TValue>中的键值对。以下是使用DictionaryEntry的示例:
Dictionary<string, int> dictionary = new Dictionary<string, int>();
dictionary.Add("apple", 1);
dictionary.Add("banana", 2);
dictionary.Add("orange", 3);
foreach (KeyValuePair<string, int> pair in dictionary)
{
DictionaryEntry entry = new DictionaryEntry(pair.Key, pair.Value);
// 使用entry进行操作或打印
Console.WriteLine($"Key: {entry.Key}, Value: {entry.Value}");
}
DictionaryEntry entry = new DictionaryEntry("apple", 1);
string key = (string)entry.Key; // 强制类型转换为键的类型
int value = (int)entry.Value; // 强制类型转换为值的类型
请注意,DictionaryEntry是一个非泛型的结构,因此在使用时需要进行强制类型转换。