Answers for "copy a list C#"

C#
0

list clone - C#

static class Extensions
{
    public static IList<T> Clone<T>(this IList<T> listToClone) where T: ICloneable
    {
        return listToClone.Select(item => (T)item.Clone()).ToList();
    }
}
Posted by: Guest on June-02-2020
2

copy a list C#

using System;
using System.Linq;
using System.Collections.Generic;

List<string> source = new List<string>() { "A", "B", "C" };
 
List<string> clonedList = source.ToList();
Console.WriteLine(String.Join(",", clonedList));

// Result = A,B,C
Posted by: Guest on May-06-2020

C# Answers by Framework

Browse Popular Code Answers by Language