Lecture overview -- Keyboard shortcut: 'u'  Previous page: Overview of the class <b><kbd>LinkedList<T></kbd></b> -- Keyboard shortcut: 'p'  Next page: Sample use of class <b><kbd>LinkedList<T></kbd></b> -- Keyboard shortcut: 'n'  Lecture notes - all slides together  Annotated slide -- Keyboard shortcut: 't'  Textbook -- Keyboard shortcut: 'v'  Alphabetic index  Help page about these notes  Course home    Collection Classes - slide 18 : 36

The class LinkedListNode<T>

The class LinkedListNode<T> is sealed, generic class that represents a non-mutable node in a linked list

A LinkedListNode can at most belong to a single linked list

LinkedListNode<T> is closely associated with LinkedList<T>

There is no public interface for initialization of the properties