Represents an enumerator for the RadLinkedList, providing the ability to iterate through the elements in the list.
Definition
Namespace:Telerik.Windows.Documents.DocumentStructure
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Type Parameters:
TEnum
Syntax:
C#
public struct RadLinkedList<T>.Enumerator<TEnum> : IEnumerator<TEnum>, IEnumerator, IDisposable
Implements:
Inherited Members
Properties
Current
TEnum
Gets the current element in the enumerator sequence.
C#
public TEnum Current { get; }
Implements:
Methods
Releases all resources used by the current instance of the RadLinkedList<T> class.
C#
public void Dispose()
Implements:
Remarks:
Call this method when you no longer need the enumerator to free up resources.
Advances the enumerator to the next element of the linked list.
C#
public bool MoveNext()
True if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.
Implements: