Class DoublyLinkedList<T>.Node
- Namespace
- AlgorithmsSW.List
- Assembly
- AlgorithmsSW.dll
public sealed record DoublyLinkedList<T>.Node : IEquatable<DoublyLinkedList<T>.Node>
- Inheritance
-
DoublyLinkedList<T>.Node
- Implements
- Inherited Members
- Extension Methods
Constructors
Node(T)
public Node(T Item)
Parameters
Item
T
Fields
Item
public T Item
Field Value
- T
NextNode
public DoublyLinkedList<T>.Node? NextNode
Field Value
PreviousNode
public DoublyLinkedList<T>.Node? PreviousNode