Here's a cheat sheet for common methods and operations on List in C#:
Creating and Initializing Lists
List<int> numbers = new List<int>(); // Empty list
List<string> names = new List<string> { "Alice", "Bob", "Charlie" }; // Initialized with elements...