Answers for "list to list c#"

C#
5

c# array to list

var intArray = new[] { 1, 2, 3, 4, 5 };
var list = new List<int>(intArray);
Posted by: Guest on March-30-2020
3

to list c#

var arr = new int[] {1, 2, 3};
List<int> list = arr.ToList();
Posted by: Guest on June-17-2020
0

c# copy the elements of a list to another list

List<Int32> copy = new List<Int32>(original);
List<Int32> copy = original.ToList(); // if you're using C# 3 and .NET 3.5, with Linq
Posted by: Guest on October-25-2020

C# Answers by Framework

Browse Popular Code Answers by Language