Ross
0
Q:

how to create a list c#

using System.Collections.Generic
//type is your data type (Ej. int, string, double, bool...)
List<type> newList = new List<type>();
5
IList<int> newList = new List<int>(){1,2,3,4};
9
C# By Magnificent Mamba on Dec 23 2019
IList<int> newList = new List<int>(){1,2,3,4};
4

New to Communities?

Join the community