c sharp creating lists code example
Example 1: make a list c#
IList<int> newList = new List<int>(){1,2,3,4};
Example 2: decalre an int list mvc
List<int> intList = new List<int>();
IList<int> newList = new List<int>(){1,2,3,4};
List<int> intList = new List<int>();