Represents a node in a LinkedList`1. This class cannot be inherited.
See Also: LinkedListNode<T> Members
- T
- Documentation for this section has not yet been entered.
Each element of the LinkedList`1 collection is a LinkedListNode`1. The LinkedListNode`1 contains a value, a reference to the LinkedList`1 that it belongs to, a reference to the next node, and a reference to the previous node.