gpt4 book ai didi

c# - 带有扩展方法的 List 的深拷贝

转载 作者:太空宇宙 更新时间:2023-11-03 20:24:02 25 4
gpt4 key购买 nike

我有这门课:

public class Person : ICloneable
{
public string FirstName { get; set; }
public string LastName { get; set; }

public object Clone()
{
return this;
}
}

扩展方法:

public static class MyHelper
{
public static IEnumerable<T> Clone<T>(this IEnumerable<T> collection) where T : ICloneable
{
return collection.Select(item => (T)item.Clone());
}
}

我想在这种情况下使用它:

var myList = new List<Person>{ 
new Person { FirstName = "Dana", LastName = "Scully" },
new Person{ FirstName = "Fox", LastName = "Mulder" }
};

List<Person> myCopy = myList.Clone().ToList<Person>();

当我在“立即窗口”中更改 myCopy 的值时,原始列表中也会发生变化。

我希望两个列表完全独立

我错过了什么?

最佳答案

您对 Clone 的实现是错误的。

试试这个:

public object Clone()
{
return MemberwiseClone();
}

关于c# - 带有扩展方法的 List<T> 的深拷贝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11734613/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com