Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将一个列表复制到一个列表中,但它通过引用不断地复制它,因此一个更改会更改另一个。我尝试克隆,但它没有复制父子关系。
foreach (TreeNode item in listNodesdestination) testNode1.Add((TreeNode)item.Clone());
谢谢。
由于它是可序列化的,因此您可以使用内存流执行深层复制。 通过内存流进行深度复制 - 堆栈溢出