Mat
28
Q:

make 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
List<int> intList = new List<int>();
0
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