System.Collections by Microsoft

<PackageReference Include="System.Collections" Version="4.0.11-beta-23409" />

 LinkedListNode<T>

public sealed class LinkedListNode<T>
Represents a node in a LinkedList<T>. This class cannot be inherited.
public LinkedList<T> List { get; }

Gets the LinkedList<T> that the LinkedListNode<T> belongs to.

public LinkedListNode<T> Next { get; }

Gets the next node in the LinkedList<T>.

public LinkedListNode<T> Previous { get; }

Gets the previous node in the LinkedList<T>.

public T Value { get; set; }

Gets the value contained in the node.

public LinkedListNode(T value)

Initializes a new instance of the LinkedListNode<T> class, containing the specified value.