DekGenius.com
[ Team LiB ] Previous Section Next Section

DictionaryEntryCF 1.0, ECMA 1.0, serializable

System.Collections (mscorlib.dll)struct

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 System.ValueType DictionaryEntry

Returned By

IDictionaryEnumerator.Entry

    [ Team LiB ] Previous Section Next Section