Mega Code Archive

 
Categories / C# Book / 03 Collections
 

0354 Generic LinkedList

LinkedList<T> is a doubly linked list. A doubly linked list is a list of nodes in which each references the node before, the node after, and the actual element.