List, from a... technical perspective, is NOT a type of linked list.
If you want to have a linked list in C# :
- either use the built-in
LinkedList type (for double-linked
lists)
- or create an implementation of your own (if you want a
singly-linked one) - here's an example