interface IDictionaryEnumerator

in global :: System . Collections

Enumerates the elements of a nongeneric dictionary.


public DictionaryEntry Entry { get; }

Gets both the key and the value of the current dictionary entry.

  • Returns A containing both the key and the value of the current dictionary entry.

public object Key { get; }

Gets the key of the current dictionary entry.

  • Returns The key of the current element of the enumeration.

public object Value { get; }

Gets the value of the current dictionary entry.

  • Returns The value of the current element of the enumeration.