LinkedList<T>.First Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the first node of the LinkedList<T>.
Assembly: System (in System.dll)
Property Value
Type: System.Collections.Generic.LinkedListNode<T>The first LinkedListNode<T> of the LinkedList<T>.
LinkedList<T> accepts null as a valid Value for reference types and allows duplicate values.
If the LinkedList<T> is empty, the First and Last properties contain null.
Retrieving the value of this property is an O(1) operation.
Show: