Enumerator<TKey,TValue> class

SkipList Enumerator.

public class Enumerator<TKey, TValue> : IEnumerator<KeyValuePair<TKey, TValue>>
    where TKey : IComparable<TKey>

Public Members

name description
Enumerator(…) Standard Constructor.
Current { get; } Gets both the key and the value of the current dictionary entry.
Key { get; } Gets the key of the current dictionary entry.
Value { get; } Gets the value of the current dictionary entry.
Dispose() Cleans up any resources being used by this object.
MoveNext() Advances the enumerator to the next element of the collection.
Reset() Sets the enumerator to its initial position, which is before the first element in the collection.

See Also