c# list generic code example
Example 1: make a list c#
IList<int> newList = new List<int>(){1,2,3,4};
Example 2: to list c#
var arr = new int[] {1, 2, 3};
List<int> list = arr.ToList();
Example 3: c# list object
List<object> Obj = New List<object>();
Obj.Add((cast any)object);