I want a true deep copy. In Java, this was easy, but how do you do it in C#?
feedback
|
|
I've seen a few different approaches to this, but I use a generic utility method as such:
Note that your class MUST be marked as [Serializable] in order for this to work. Note that this class must include: using System.Runtime.Serialization.Formatters.Binary; using System.IO; | |||||||||||||||||
feedback
|
|
Building on Kilhoffer's solution... With C# 3.0 you can create an extension method as follows:
which extends any class that's been marked as [Serializable] with a DeepClone method
| |||||||||||||
feedback
|
|
Kilhoffer's code doesn't compile. Here's the corrected version.
| |||||||||||||||||
feedback
|
|
this is one way: http://www.thomashapp.com/node/106 another is to use binary serialization. | |||
|
feedback
|
|
A framework for copying/cloning .NET objects: | |||
|
feedback
|
|
You can use Nested MemberwiseClone to do a deep copy. Its almost the same speed as copying a value struct, and its an order of magnitude faster than (a) reflection or (b) serialization (as described on this page). Note that if you use Nested MemberwiseClone for a deep copy, you have to manually implement a ShallowCopy for each nested level in the class, and a DeepCopy which calls all said ShallowCopy methods to create a complete clone. This is simple: only a few lines in total, see the demo code below. Here is the output of the code showing the relative performance difference (4.77 seconds for deep nested MemberwiseCopy vs. 39.93 seconds for Serialization). Using nested MemberwiseCopy is almost as fast as copying a struct, and copying a struct is pretty close to the theoretical maximum speed .NET is capable of.
To understand how to do a deep copy using MemberwiseCopy, here is the demo project:
Then, call the demo from main:
Again, note that if you use Nested MemberwiseClone for a deep copy, you have to manually implement a ShallowCopy for each nested level in the class, and a DeepCopy which calls all said ShallowCopy methods to create a complete clone. This is simple: only a few lines in total, see the demo code above. Note that when it comes to cloning an object, there is is a big difference between a "struct" and a "class":
| ||||
|
feedback
|
|
I believe that the BinaryFormatter approach is relatively slow (which came as a surprise to me!). You might be able to use ProtoBuf .Net for some objects if they meet the requirements of ProtoBuf. From the ProtoBuf Getting Started page (http://code.google.com/p/protobuf-net/wiki/GettingStarted): Notes on types supported: custom classes that:
The code assumes that types will be mutable around the elected members. Accordingly, custom structs are not supported, since they should be immutable. If your class meets these requirements you could try:
Which VERY fast indeed... | |||
|
feedback
|
|
I just wrote a class that you can copy paste the code and use it anywhere. class will handle the source as object but still the source must be [Serializable] when it's referenced to the class.
and how to use: imagine we have:
and we want to copy it, here we go:
you will need these namespaces for CopyEverything:
| |||
|
feedback
|
this way is a few times faster than | |||||
feedback
|
|
Maybe you only need a shallow copy, in that case use There are good recommendations in the documentation for http://msdn.microsoft.com/en-us/library/system.object.memberwiseclone.aspx | |||||
feedback
|