HashSet<T>::Enumerator::Current Property
Gets the element at the current position of the enumerator.
Assembly: System.Core (in System.Core.dll)
Property Value
Type: TThe element in the HashSet<T> collection at the current position of the enumerator.
Implements
IEnumerator<T>::CurrentCurrent is undefined under any of the following conditions:
The enumerator is positioned before the first element in the collection immediately after the enumerator is created. The MoveNext method must be called to advance the enumerator to the first element of the collection before reading the value of Current.
The last call to MoveNext returned false, which indicates the end of the collection.
Current returns the same object until MoveNext is called. MoveNext sets Current to the next element. If the list is modified between calling MoveNext method and obtaining the contents of the Current property, Current returns the element that it is set to, even though the enumerator is invalidated.
Note |
|---|
For better performance, this property does not throw an exception if the enumerator is positioned before the first element or after the last element. The value of the property is undefined. To get an exception instead, cast the HashSet<T>::Enumerator to the System.Collections::IEnumerator interface before using it. |
Available since 8
.NET Framework
Available since 3.5
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
