List in C# — a practical guide to C# List with clear examples you can reuse in real projects.
C# Tutorial Series (74/121). Prefer one article? Read the complete C# tutorial.
Short description
The most common collection for app code.
List
var items = new List<string> { "a", "b" };
items.Add("c");