vote up 19 vote down star
6

I want a true deep copy. In Java, this was easy, but how do you do it in C#?

flag

8 Answers

vote up 31 vote down check

I've seen a few different approaches to this, but I use a generic utility method as such:

public static T DeepClone<T>(T obj)
{
 using (var ms = new MemoryStream())
 {
   var formatter = new BinaryFormatter();
   formatter.Serialize(ms, obj);
   ms.Position = 0;

   return (T) formatter.Deserialize(ms);
 }
}

Note that your class MUST be marked as [Serializable] in order for this to work.

link|flag
What happen if the object have event, Do they lost everything because of the serialization? – Daok Sep 24 '08 at 19:56
1  
Event subscribes are included into serialization graph, since BinaryFormatter uses fields via reflection, and events are just fields of delegate types plus add/remove/invoke methods. You can use [field: NonSerialized] on event to avoid this. – Ilya Ryzhenkov Sep 24 '08 at 20:16
This only works if all members are marked [Serializable] – Christopher Sep 30 '08 at 15:06
What is that undeclared "stream" variable? Or is it something just in C# and not VB.NET? I converted everything but that variable. – HardCode Mar 19 at 20:41
No, that's a typo. I'm correcting it now... – Kilhoffer Mar 20 at 3:38
show 1 more comment
vote up 1 vote down

I'm still on the C# learning curve, but when I looked into this it appeared that you had to roll your own deep copy function if you wanted one.

link|flag
vote up 1 vote down

this is one way: http://www.thomashapp.com/node/106 another is to use binary serialization.

link|flag
vote up 1 vote down

What does a Deep Copy do? Does it copy the bitstream?

link|flag
2  
A deep copy is something that copies EVERY field of an object. A shallow copy will only create a new object and point all the fields to the original. – swilliams Sep 24 '08 at 19:46
vote up -1 vote down

Have you tried using the struct construct? I'm a newbie to c# myself (also coming from the Java camp) but this may be useful to you.

http://www.c-sharpcorner.com/UploadFile/rajeshvs/StructuresInCS11112005234341PM/StructuresInCS.aspx

I.e.

With structs you can do this (psuedo code):

A = 10;
B = A;
B = 20

print(A) // out's 10
print(B) // out's 20

Kind of like java primatives, but structs can have methods and other variables just as regular classes

link|flag
All you're doing is reassigning B's value. How does this answer his question? – junkforce Oct 18 '08 at 20:02
vote up 10 vote down

Kilhoffer's code doesn't compile. Here's the corrected version.

    public static T DeepCopy<T>(T obj)
    {
        object result = null;

        using (var ms = new MemoryStream())
        {
            var formatter = new BinaryFormatter();
            formatter.Serialize(ms, obj);
            ms.Position = 0;

            result = (T)formatter.Deserialize(ms);
            ms.Close();
        }

        return (T)result;
    }
link|flag
1  
Almost forgot to mention, make sure the class/object you're doing a DeepCopy on is marked as Serializable [Serializable] public class MyClass – Jon Galloway Oct 18 '08 at 20:19
I've corrected my code. I had a variable mispelled. It's good now. – Kilhoffer Mar 20 at 3:40
vote up -1 vote down

Solution, without serializable:

Frame frame = new Frame();

  MemoryStream ms_source = new MemoryStream();      
  TextWriter w = new StreamWriter(ms_source, Encoding.UTF8);
  XmlSerializer s = new XmlSerializer(typeof(Frame));
  s.Serialize(w, src);


  MemoryStream ms_dest = new MemoryStream(ms_source.GetBuffer());      
  XmlSerializer serializer = new XmlSerializer(typeof(Frame));
  frame = (Frame)serializer.Deserialize(ms_dest);

  ms_source.Dispose();
  ms_dest.Dispose();
link|flag
still the object must be serializable.. – Andrei Rinea Jan 6 '09 at 0:12
The XML Serializer is limited. Do not use it for this purpose, as it will NOT serialize everything. – John Saunders Mar 20 at 4:00
vote up 3 vote down

Building on Kilhoffer's solution...

With C# 3.0 you can create an extension method as follows:

public static class ExtensionMethods
{
    // Deep clone
    public static T DeepClone<T>(this T a)
    {
        using (MemoryStream stream = new MemoryStream())
        {
            BinaryFormatter formatter = new BinaryFormatter();
            formatter.Serialize(stream, a);
            stream.Position = 0;
            return (T) formatter.Deserialize(stream);
        }
    }
}

which extends any class that's been marked as [Serializable] with a DeepClone method

MyClass copy = obj.DeepClone();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.