I am using this.MemberwiseClone() to create shallowcopy but it is not working. Please look at the code below.

public class Customer
    {

        public int Id;
        public string Name;

        public Customer CreateShallowCopy()
        {
            return (Customer)this.MemberwiseClone();
        }
    }

class Program
{
    static void Main(string[] args)
    {
        Customer objCustomer = new Customer() { Id = 1, Name = "James"};
        Customer objCustomer2 = objCustomer;

        Customer objCustomerShallowCopy = objCustomer.CreateShallowCopy();

        objCustomer.Name = "Jim";
        objCustomer.Id = 2;            
    }
}

When I run the program, It shows objCustomerShallowCopy.Name as "James" rather than "Jim".

Any Ideas??

link|improve this question

75% accept rate
feedback

2 Answers

up vote 2 down vote accepted

When you shallow copy the Customer object the objCustomerShallowCopy.Name will be James and will stay like that until you change that object. Now in your case the string "James" will gave 3 references to it (objCustomer, objCustomer2 and objCustomerShallowCopy).

When you are changing objCustomer.Name to Jim you are actually creating a new string object for the objCustomer object and releasing 1 ref to the "James" string object.

link|improve this answer
How do I go about changing "objCustomer" properties (reference types) so that I can see the change reflected in "objCustomerShallowCopy" ?? – Subhasis Oct 10 '10 at 16:58
In that case why use clone in the first place? Simply set objCustomerShallowCopy = objCustomer – Mark PM Oct 10 '10 at 17:02
My Question is why is not working....Is a bug in the Framework ??? – Subhasis Oct 10 '10 at 17:04
Why does the documentation says MemberwiseClone does a shallow copy while in actual it is not doing do. It is doing a deep copy. – Subhasis Oct 10 '10 at 17:06
1  
MemberwiseClone is making a shallow copy, as the documentation describes. You have to remember that strings are immutable. As the answer says, When you assign objCustomer.Name = "Jim", you're creating a new string object and assigning it to objCustomer.Name. The "problem" is that you're not understanding the meaning of "shallow copy". – Jim Mischel Oct 10 '10 at 17:13
show 1 more comment
feedback

We have also had problems getting that to work. We have solved it by serializing and then deserializing the object.

public static T DeepCopy<T>(T item)
{
    BinaryFormatter formatter = new BinaryFormatter();
    MemoryStream stream = new MemoryStream();
    formatter.Serialize(stream, item);
    stream.Seek(0, SeekOrigin.Begin);
    T result = (T)formatter.Deserialize(stream);
    stream.Close();
    return result;
}

Using the above code there will be no reference between the two objects.

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.