System.Collections.Generic.LinkedListNode<T>
namespace System.Collections.Generic
{
public sealed class LinkedListNode<T>
{
public LinkedList<T> List { get; }
public LinkedListNode<T> Next { get; }
public LinkedListNode<T> Previous { get; }
public T Value { get; set; }
public LinkedListNode(T value);
}
}