convert list to array c# code example
Example 1: c sharp array to list
var list = new List<int>(array);
Example 2: C# list to array
string[] array = list.ToArray();
Example 3: c# array to list
var intArray = new[] { 1, 2, 3, 4, 5 };
var list = new List<int>(intArray);
Example 4: to list c#
var arr = new int[] {1, 2, 3};
List<int> list = arr.ToList();