I want to do something like...

myObject myObj = GetmyObj()//create and fill a new object
myObject newObj = myObj.Clone();

...and then make changes to the new object that are not reflected in the original object.

I don't often need this functionality so when it's been necessary I've resorted to creating a new object and then copying each property individually but it always leaves me with the feeling that there is a better/more elegant way of handling the situation.

How can I clone/deep copy an object so that the cloned object can be modified without any changes being reflected in the original object?

link|improve this question

1  
May be useful: "Why Copying an Object is a terrible thing to do?" agiledeveloper.com/articles/cloning072002.htm – Pedro77 Dec 7 '11 at 11:56
stackoverflow.com/questions/8025890/… Another solution... – Felix K. Mar 16 at 16:39
feedback

15 Answers

up vote 292 down vote accepted

Whilst the standard practice is to inherit from ICloneable (described here, so I wont regurgitate), here's a nice Deep Clone Object copier I found on codeproject a while ago and incorporated it in our stuff.

As mentioned above, it does require your objects to be Serializable

/// <summary>
/// Reference Article http://www.codeproject.com/KB/tips/SerializedObjectCloner.aspx
/// 
/// Provides a method for performing a deep copy of an object.
/// Binary Serialization is used to perform the copy.
/// </summary>

public static class ObjectCopier
{
    /// <summary>
    /// Perform a deep Copy of the object.
    /// </summary>
    /// <typeparam name="T">The type of object being copied.</typeparam>
    /// <param name="source">The object instance to copy.</param>
    /// <returns>The copied object.</returns>
    public static T Clone<T>(T source)
    {
        if (!typeof(T).IsSerializable)
        {
            throw new ArgumentException("The type must be serializable.", "source");
        }

        // Don't serialize a null object, simply return the default for that object
        if (Object.ReferenceEquals(source, null))
        {
            return default(T);
        }

        IFormatter formatter = new BinaryFormatter();
        Stream stream = new MemoryStream();
        using (stream)
        {
            formatter.Serialize(stream, source);
            stream.Seek(0, SeekOrigin.Begin);
            return (T)formatter.Deserialize(stream);
        }
    }
}    

The idea behind it is that it serializes your object, then deserializes it into a fresh object. The benefit is that you don't have to concern yourself about cloning everything when an object gets too complex.

EDIT

And with the use of extension methods (also from the originally referenced source):

In case you prefer to use the new Extension methods of C# 3.0, change the method to have the following signature:

   public static T Clone<T>(this T source)
   {
      ...
   }

Now the method call simply becomes objectBeingCloned.Clone();.

link|improve this answer
5  
stackoverflow.com/questions/78536/cloning-objects-in-c/… has a link to the code above [and references two other such implementations, one of which is more appropriate in my context] – Ruben Bartelink Feb 4 '09 at 13:13
97  
Sorry not to have read the previous 78611 answers before offering perfectly valid and helpful advice – johnc Feb 26 '09 at 10:29
5  
That is an excellent cloner. Bob. – scope_creep Sep 5 '09 at 17:42
17  
Serialization/deserialization involves significant overhead that isn't necessary. See the ICloneable interface and .MemberWise() clone methods in C#. – David Lively Jan 28 '10 at 17:28
5  
@David, granted, but if the objects are light, and the performance hit when using it is not too high for your requirements, then it is a useful tip. I haven't used it intensively with large amounts of data in a loop, I admit, but I have never seen a single performance concern. – johnc Jan 29 '10 at 0:21
show 16 more comments
feedback

Here's a good resource I've used in the past: C# Object Cloning

link|improve this answer
+1 Good resource – Mark Bouchard Feb 9 at 21:46
feedback

The reason not to use ICloneable is not because it doesn't have a generic interface. The reason not to use it is because it's vague. It doesn't make clear whether you're getting a shallow or a deep copy; that's up to the implementer.

Yes, MemberwiseClone makes a shallow copy, but the opposite of MemberwiseClone isn't Clone; it would be, perhaps, DeepClone, which doesn't exist. When you use an object through its ICloneable interface, you can't know which kind of cloning the underlying object performs. (And XML comments won't make it clear, because you'll get the interface comments rather than the ones on the object's Clone method.)

What I usually do is simply make a Copy method that does exactly what I want.

link|improve this answer
+1. Here's a good article on it by Brad Abrams- blogs.msdn.com/brada/archive/2004/05/03/125427.aspx – RichardOD Nov 27 '09 at 9:10
7  
That's the same article the link in my answer points to. – Kyralessa Nov 27 '09 at 15:22
I'm not clear why ICloneable is considered vague. Given a type like Dictionary(Of T,U), I would expect that ICloneable.Clone should do whatever level of deep and shallow copying is necessary to make the new dictionary be an independent dictionary that contains the same T's and U's (struct contents, and/or object references) as the original. Where's the ambiguity? To be sure, a generic ICloneable(Of T), which inherited ISelf(Of T), which included a "Self" method, would be much better, but I don't see ambiguity on deep vs shallow cloning. – supercat Jan 12 '11 at 18:35
3  
Your example illustrates the problem. Suppose you have a Dictionary<string, Customer>. Should the cloned Dictionary have the same Customer objects as the original, or copies of those Customer objects? There are reasonable use cases for either one. But ICloneable doesn't make clear which one you'll get. That's why it's not useful. – Kyralessa Jan 12 '11 at 18:53
That was just the hint I needed to start thinking in the right direction. I'll be adding a Copy() method to my Class. – ford Oct 7 '11 at 19:24
feedback

I prefer a copy ctor to a clone. The intent is clearer.

link|improve this answer
.Net doesn't have copy constructors. – Pop Catalin Sep 17 '08 at 0:45
9  
Sure it does: new MyObject(objToCloneFrom) Just declare a ctor which takes the object to clone as a parameter. – Nick Sep 17 '08 at 11:49
2  
It's not the same thing. You have to add it to every class manually, and you don't even know if you're garantueeing a deep copy. – Dave Van den Eynde Jun 4 '09 at 8:01
1  
+1 for copy ctor. You have to manually write a clone() function for each type of object too, and good luck with that when your class hierarchy gets a few levels deep. – Andrew Grant Sep 15 '09 at 0:50
1  
+1. This is how XDocument does it. – RichardOD Nov 27 '09 at 9:01
show 2 more comments
feedback

Well I was having problems using ICloneable in Silverlight, but I liked the idea of seralization, I can seralize XML, so I did this:

 static public class SerializeHelper
{
  //Michael White, Holly Springs Consulting, 2009
  //michael@hollyspringsconsulting.com

    public static T DeserializeXML<T>(string xmlData)
        where T:new()
    {
        if (string.IsNullOrEmpty(xmlData))
            return default(T);

        TextReader tr = new StringReader(xmlData);

        T DocItms = new T();

        XmlSerializer xms = new XmlSerializer(DocItms.GetType());

        DocItms = (T)xms.Deserialize(tr);


        return DocItms == null ? default(T) : DocItms;


    }

    public static string SeralizeObjectToXML<T>(T xmlObject)
    {
        StringBuilder sbTR = new StringBuilder();

        XmlSerializer xmsTR = new XmlSerializer(xmlObject.GetType());

        XmlWriterSettings xwsTR = new XmlWriterSettings();

        XmlWriter xmwTR = XmlWriter.Create(sbTR, xwsTR);

        xmsTR.Serialize(xmwTR,xmlObject);

        return sbTR.ToString();

    }

    public static T CloneObject<T>(T objClone)
        where T:new()
    {

        string GetString = SerializeHelper.SeralizeObjectToXML<T>(objClone);

        return SerializeHelper.DeserializeXML<T>(GetString);

    }



}
link|improve this answer
feedback

Simple extension method to copy all public properties. Works for any objects and does not require class to be [Serializable]. Can be extended for other access level.

    public static void CopyTo( this object S, object T )
    {
          foreach( var pS in S.GetType().GetProperties() )
        {
            foreach( var pT in T.GetType().GetProperties() )
            {
                if( pT.Name != pS.Name ) continue;
                ( pT.GetSetMethod() ).Invoke( T, new object[] { pS.GetGetMethod().Invoke( S, null ) } );
            }
        };
    }
link|improve this answer
1  
If the two objects are of the same type, it would make more sense to make this a generic method with a single type parameter to enforce that. If they are not the same type, you'll have to handle the possibility that properties with the same name might have incompatible types. For example, S might have a property called "ID" of type int, while T's ID property might be a Guid. – phoog May 19 '11 at 4:15
2  
This, unfortunately, is flawed. It's equivalent to calling objectOne.MyProperty = objectTwo.MyProperty (i.e., it will just copy the reference across). It will not clone the values of the properties. – Alex Norcliffe Oct 18 '11 at 0:59
1  
I needed to copy from one object instance into a second object instance of the same type. Does the job fine thanks. – ttt Jan 20 at 10:42
to Alex Norcliffe : author of question asked about "copying each property" rather then cloning. in most cases exact duplication of properties is not needed. – Konstantin Salavatov Mar 28 at 9:41
feedback

The short answer is you inherit from the ICloneable interface and then implement the .clone function. Clone should do a memberwise copy and perform a deep copy on any member that requires it, then return the resulting object. This is a recursive operation ( it requires that all members of the class you want to clone are either value types or implement ICloneable and that their members are either value types or implement ICloneable, and so on).

For a more detailed explanation on Cloning using ICloneable, check out this article:

http://www.ondotnet.com/pub/a/dotnet/2002/11/25/copying.html

The long answer is "it depends". As mentioned by others, ICloneable is not supported by generics, requires special considerations for circular class references, and is actually viewed by some as a "mistake" in the .NET Framework. The serialization method depends on your objects being serializable, which they may not be and you may have no control over. There is still much debate in the community over which is the "best" practice. In reality, none of the solutions are the one-size fits all best practice for all situations like ICloneable was originally interpreted to be.

See the this Developer's Corner article for a few more options (credit to Ian): http://developerscon.blogspot.com/2008/06/c-object-clone-wars.html

link|improve this answer
ICloneable doesn't have a generic interface, so it is not recommended to use that interface. – Karg Sep 17 '08 at 0:15
Your solution works until it needs to handle circular references, then things start to complicate, it's better to try implement deep cloning using deep serialization. – Pop Catalin Sep 17 '08 at 0:46
Unfortunately, not all objects are serializable either, so you can't always use that method either. Ian's link is the most comprehensive answer so far. – Zach Burlingame Sep 17 '08 at 0:56
+1 for mentioning the Brad Abrams article. – Merlyn Morgan-Graham Nov 6 '11 at 8:33
feedback

I came up with this to overcome .net shortcoming having to manually deep copy List.

I use this:

static public IEnumerable<SpotPlacement> CloneList(List<SpotPlacement> spotPlacements)
{
    foreach (SpotPlacement sp in spotPlacements)
    {
        yield return (SpotPlacement)sp.Clone();
    }
}

And at another place:

public object Clone()
{
    OrderItem newOrderItem = new OrderItem();
    ...
    newOrderItem._exactPlacements.AddRange(SpotPlacement.CloneList(_exactPlacements));
    ...
    return newOrderItem;
}

I tried to come up with oneliner that does this, but it's not possible, due to yield not working inside anonymous method blocks.

EDIT:

Better still, use generic List cloner:

class Utility<T> where T : ICloneable
{
    static public IEnumerable<T> CloneList(List<T> tl)
    {
        foreach (T t in tl)
        {
            yield return (T)t.Clone();
        }
    }
}
link|improve this answer
feedback

In general, you implement the ICloneable interface and implement Clone yourself. C# objects have a built-in MemberwiseClone method that performs a shallow copy that can help you out for all the primitives.

For a deep copy, there is no way it can know how to automatically do it.

link|improve this answer
ICloneable doesn't have a generic interface, so it is not recommended to use that interface. – Karg Sep 17 '08 at 0:12
Microsofts recommendation on the use of ICloneable: Don't. blogs.msdn.com/brada/archive/2004/05/03/125427.aspx – Bevan Feb 13 '09 at 9:00
feedback
  1. Basically you need to implement IClonable interface and then realize object structure copying.
  2. If it's deep copy of all members, you need to insure (not relating on solution you choose) that all children are clonable as well.
  3. Sometimes you need to be aware of some restriction during this process, for example if you copying the ORM objects most of frameworks allow only one object attached to the session and you MUST NOT make clones of this object, or if it's possible you need to care about session attaching of these objects.

Cheers.

link|improve this answer
1  
ICloneable doesn't have a generic interface, so it is not recommended to use that interface. – Karg Sep 17 '08 at 0:13
feedback

Override clone.

link|improve this answer
aka implement ICloneable, but it's about the same idea. – Nick Sep 17 '08 at 0:09
ICloneable doesn't have a generic interface, so it is not recommended to use that interface. – Karg Sep 17 '08 at 0:13
feedback

Here is a quick example that looks really interesting for duplicating memory...

http://www.c-sharpcorner.com/UploadFile/sd_surajit/cloning05032007012620AM/cloning.aspx

link|improve this answer
feedback

I've seen it implemented through reflection as well. Basically there was a method that would iterate through the members of an object and appropriately copy them to the new object. When it reached reference types or collections I think it did a recursive call on itself. Reflection is expensive, but it worked pretty well.

link|improve this answer
feedback

Here is a deep copy implementation:

public static object CloneObject(object opSource)
{
    //grab the type and create a new instance of that type
    Type opSourceType = opSource.GetType();
    object opTarget = CreateInstanceOfType(opSourceType);

    //grab the properties
    PropertyInfo[] opPropertyInfo = opSourceType.GetProperties(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);

    //iterate over the properties and if it has a 'set' method assign it from the source TO the target
    foreach (PropertyInfo item in opPropertyInfo)
    {
        if (item.CanWrite)
        {
            //value types can simply be 'set'
            if (item.PropertyType.IsValueType || item.PropertyType.IsEnum || item.PropertyType.Equals(typeof(System.String)))
            {
                item.SetValue(opTarget, item.GetValue(opSource, null), null);
            }
            //object/complex types need to recursively call this method until the end of the tree is reached
            else
            {
                object opPropertyValue = item.GetValue(opSource, null);
                if (opPropertyValue == null)
                {
                    item.SetValue(opTarget, null, null);
                }
                else
                {
                    item.SetValue(opTarget, CloneObject(opPropertyValue), null);
                }
            }
        }
    }
    //return the new item
    return opTarget;
}
link|improve this answer
This looks like memberwise clone because does not aware of reference type properties – sll Nov 6 '11 at 10:17
If you want blindingly fast performance, don't go for this implementation: it uses reflection, so it won't be that fast. Conversely, "premature optmization is the of all evil", so ignore the performance side until after you've run a profiler. – Gravitas Dec 30 '11 at 17:30
feedback

Define an ISelf<T> with a read-only Self property that returns T, and ICloneable<out T>, which derives from ISelf<T> and includes a Clone() method that returns T. Then define a CloneBase type which implements a protected virtual generic VirtualClone which casts casting MemberwiseClone to the passed-in type. Each derived type should implement VirtualClone by calling the base clone method and then doing whatever needs to be done to properly clone those aspects of the derived type which the parent VirtualClone method hasn't yet handled.

For maximum inheritance versatility, classes which should expose public cloning functionality should be sealed, but derive from a base class which is otherwise identical except for the lack of cloning. Rather than passing variables of the explicit clonable type, take a parameter of type ICloneable<theNonCloneableType>. This will ensure allow a routine that expects a cloneable derivative of Foo to work with a cloneable derivative of DerivedFoo, but also allow the creation of non-cloneable derivatives of Foo.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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