📅  最后修改于: 2022-03-11 14:48:49.941000             🧑  作者: Mango
List copy = new List(original);
or if you're using C# 3 and .NET 3.5, with Linq, you can do this:
List copy = original.ToList();