Struct MultiValueSortedDictionary<TKey, TValue>.ValueCollection.Enumerator
- Namespace
- Stride.Core.Collections
- Assembly
- Stride.Core.dll
Enumerates the elements of a KoderHack.MultiValueSortedDictionary<TKey,TValue>.ValueCollection.
public struct MultiValueSortedDictionary<TKey, TValue>.ValueCollection.Enumerator : IEnumerator<TValue>, IDisposable, IEnumerator
- Implements
-
IEnumerator<TValue>
- Inherited Members
- Extension Methods
Properties
Current
Gets the element at the current position of the enumerator.
public TValue Current { get; }
Property Value
- TValue
The element in the KoderHack.MultiValueSortedDictionary<TKey,TValue>.ValueCollection at the current position of the enumerator.
Methods
Dispose()
Releases all resources used by the KoderHack.MultiValueSortedDictionary<TKey,TValue>.ValueCollection.Enumerator.
public void Dispose()
MoveNext()
Advances the enumerator to the next element of the KoderHack.MultiValueSortedDictionary<TKey,TValue>.ValueCollection.
public bool MoveNext()
Returns
- bool
true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.
Exceptions
- InvalidOperationException
The collection was modified after the enumerator was created.