Is System.Collections.Generic.List a type of linked list(not the LinkedList class)?
A linked
No, ListArrayList from .NET 1.0. From the docs:
The
Listclass is the generic equivalent of theArrayListclass. It implements theIListgeneric interface using an array whose size is dynamically increased as required.
Note that due to being backed by an array, its access via indexers is O(1) as opposed to the O(N) for a linked list.
If you want a linked list, use LinkedList