c# declaring list code example
Example 1: make a list c#
IList<int> newList = new List<int>(){1,2,3,4};
Example 2: c# list declaration
List<int> primeNumbers = new List<int>();
IList<int> newList = new List<int>(){1,2,3,4};
List<int> primeNumbers = new List<int>();