LinkedList<T> indexer

Gets or sets the element at the specified index.

public T this[int index] { get; set; }

Exceptions

exception condition
ArgumentOutOfRangeException Thrown if index is less than zero or greater than the size of the list.

See Also