LinkedList<T>.Enumerator.Current Property

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Gets the element at the current position of the enumerator.

Namespace:  System.Collections.Generic
Assembly:  System (in System.dll)

Syntax

'Declaration
Public ReadOnly Property Current As T
public T Current { get; }

Property Value

Type: T
The element in the LinkedList<T> at the current position of the enumerator.

Implements

IEnumerator<T>.Current

Remarks

Current 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. MoveNext 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 collection is modified between MoveNext and Current, Current returns the element that it is set to, even though the enumerator is invalidated.

NoteNote:

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.

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.