return list of int in c# code example
Example 1: c sharp list of strings
// Create a list of strings using 'new List<string>{}'
List<string> stringList = new List<string>{"string1", "string2"};
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);