define list 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: create List c#
using System.Collections.Generic
//type is your data type (Ej. int, string, double, bool...)
List<type> newList = new List<type>();
Example 3: make a list c#
IList<int> newList = new List<int>(){1,2,3,4};
Example 4: decalre an int list mvc
List<int> intList = new List<int>();
Example 5: c# list declaration
List<int> primeNumbers = new List<int>();