System.Collections.DictionaryEntry
namespace System.Collections
{
public struct DictionaryEntry
{
public object Key { get; set; }
public object Value { get; set; }
public DictionaryEntry(object key, object value);
}
}