This class encapsulates a key/value pair. IDictionary uses it to return the values in the dictionary in CopyTo and GetEnumerator.
public struct DictionaryEntry { public: //Constructors DictionaryEntry (Object key, Object value); //Fields Object Key; Object Value; } }