C # in a Nutshell, Second Edition
This structure defines the special value type used for the elements of a dictionary collection. This type consists of a key and a value. A DictionaryEntry is retrieved by the IDictionaryEnumerator.Entry property. public struct DictionaryEntry { // Public Constructors public DictionaryEntry (object key , object value ); // Public Instance Properties public object Key {set; get; } public object Value {set; get; } } Hierarchy
System.Object Returned By
IDictionaryEnumerator.Entry |