c# list in code example
Example 1: C# list
List<string> myListOfStrings = new List<string>
{
"this",
"is",
"my",
"list"
};
Example 2: Lists - Learn C#
List<string> food = new List<string>();
food.Add("apple");
food.Add("banana");
List<string> vegetables = new List<string>();
vegetables.Add("tomato");
vegetables.Add("carrot");
food.AddRange(vegetables);
Console.WriteLine(food.Count);