Kat
0
Q:

create 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
List<int> list = new List<int>(); // List of ints
list.Add(5); // Add 5 to list
6

New to Communities?

Join the community