Struct LurchTable<TKey, TValue>.KeyCollection.Enumerator
Provides an enumerator that iterates through the collection.
Implements
IEnumerator<TKey>
Namespace: Lucene.Net.Support
Assembly: Lucene.Net.dll
Syntax
public struct Enumerator : IEnumerator<TKey>
Properties
| Improve this Doc View SourceCurrent
Gets the element in the collection at the current position of the enumerator.
Declaration
public TKey Current { get; }
Property Value
| Type | Description |
|---|---|
| TKey |
Methods
| Improve this Doc View SourceDispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Declaration
public void Dispose()
MoveNext()
Advances the enumerator to the next element of the collection.
Declaration
public bool MoveNext()
Returns
| Type | Description |
|---|---|
| System.Boolean |
Reset()
Sets the enumerator to its initial position, which is before the first element in the collection.
Declaration
public void Reset()
Implements
IEnumerator<>