copy a list C#

C#
using System;
using System.Linq;
using System.Collections.Generic;
 
public class Example
{
    public static void Main()
    {
        List<string> source = new List<string>() { "A", "B", "C" };
 
        List<string> clonedList = source.ToList();
          Console.WriteLine(String.Join(",", clonedList));
    }
}
 
/*
    Output: A,B,C
*/

Source

Also in C#: