HashSet<T>.Enumerator.IEnumerator.Current Property
Gets the element at the current position of the enumerator.
Assembly: System.Core (in System.Core.dll)
Property Value
Type: System.ObjectThe element in the collection at the current position of the enumerator, as an Object.
Implements
IEnumerator.Current| Exception | Condition |
|---|---|
| InvalidOperationException |
The enumerator is positioned before the first element of the collection or after the last element. |
After an enumerator is created or after the Reset method is called, the MoveNext method must be called to advance the enumerator to the first element of the collection before reading the value of the Current property; otherwise, Current is undefined.
Current also throws an exception if the last call to MoveNext returned false, which indicates the end of the collection.
Current does not move the position of the enumerator, and consecutive calls to Current return the same object until either MoveNext or Reset is called.
An enumerator remains valid as long as the collection remains unchanged. If changes are made to the collection, such as adding, modifying, or deleting elements, the enumerator is irrecoverably invalidated and the next call to MoveNext or Reset throws an InvalidOperationException. If the collection is modified between calling MoveNext method and obtaining the value of the Current property, Current returns the element that it is set to, even if the enumerator is already invalidated.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.