Cloning Objects In .NET Framework

This explanation is not valid for immutable classes (strings, delegates, structures, etc), because these classes have other behaviors, and do not feature in this article.
 
For this, we will use two implementation techniques - ICloneable Interface and Extension Methods, depending on the type of cloning.
 
Class example
 
This is the class we will use for the examples.
  1. public class Customer: ICloneable {  
  2.     public int ID { get;  
  3.         set; }  
  4.     public string Name { get;  
  5.         set; }  
  6.     public decimal Sales { get;  
  7.         set; }  
  8.     public DateTime EntryDate { get;  
  9.         set; }  
  10.     public Address Adress { get;  
  11.         set; }  
  12.     public Collection < string > Mails { get;  
  13.         set; }  
  14.   
  15.     protected string Data1 { get;  
  16.         set; }  
  17.     private string Data2 { get;  
  18.         set; }  
  19.   
  20.     public Customer() {  
  21.         Data1 = "data1";  
  22.         Data2 = "Data2";  
  23.     }  
  24.   
  25.     public virtual object Clone() {}  
  26. }
The need for cloning
 
It is a very essential programmatic part. If you are not a basic developer, you can skip this blog. In the high-level languages (C#, Java, C++, etc.), when we assign an object to another object, we are assigning two objects to the same reference.
  1. Customer customer1 = new Customer { ID = 1, Name = "Test", City = "City", Sales = 1000m };  
  2. Customer customer2 = customer1;  
 
Customer1 and Customer2 are linked and any modification in an object will be reflected in the other object. To Clone is necessary for un-linking the object and its virtual copy; and they are independent objects.
 
 

ICloneable

 
It is an official .NET Framework Interface to clone the objects. It is very simple and has only one method, Clone. This interface leaves you free to use the Clone method as we like. We can apply the depth level we choose.
  1. public interface ICloneable  
  2. {  
  3.    object Clone();  
  4. }  
The biggest problem of this interface is the return value of the Clone method, object type. Whenever you use the Clone method, you will have to do a casting to principal type.
  1. Customer customer2 = (Customer)customer1.Clone();  
Extension Method
 
Another way to clone objects is by Extension Methods. These methods provide an opportunity to return generic types. With this, we save the boxing/unboxing problems. We write the Extensions Methods only once, and we may use our extension method extending object for all .NET types.
  1. public static class MyExtensions {  
  2.     public static T CloneObject < T > (this object source) {  
  3.         T result = Activator.CreateInstance < T > ();  
  4.         //// **** made things  
  5.         return result;  
  6.     }  
  7. }  
Call
  1. Customer Customer2 = customer1.CloneObject();  
We can use the extension method in conjunction with ICloneable.
  1. public class Customer: ICloneable {  
  2.     // Properties ...  
  3.     public virtual object Clone() {  
  4.         return this.CloneObject();  
  5.     }  
  6. }  

Object.MemberWiseClone

 
MemberWiseClone is a protected method of the object. This method creates a shallow copy of the current object to the new object.
 
MemberWiseClone copies the references properties (classes) or values properties (structs), in a different way
  • Structs Copies bit by bit the value of the property.
  • Class Copies the reference of property, consequently, they are the same object.
The case class is a problem because both objects are the same. This is a lack of method.
 
The use of MemberWiseClone is usually done at the same as ICloneable Interface because the MemberWiseClone is a protected method and is mandatory to call internally.
 
MemberWiseClone example
  1. public class Customer: ICloneable {  
  2.     public int ID {  
  3.         get;  
  4.         set;  
  5.     }  
  6.     public string Name {  
  7.         get;  
  8.         set;  
  9.     }  
  10.     public decimal Sales {  
  11.         get;  
  12.         set;  
  13.     }  
  14.     public DateTime EntryDate {  
  15.         get;  
  16.         set;  
  17.     }  
  18.     public Address Adress {  
  19.         get;  
  20.         set;  
  21.     }  
  22.     public Collection < string > Mails {  
  23.         get;  
  24.         set;  
  25.     }  
  26.     protected string Data1 {  
  27.         get;  
  28.         set;  
  29.     }  
  30.     private string Data2 {  
  31.         get;  
  32.         set;  
  33.     }  
  34.     public Customer() {  
  35.         Data1 = "data1";  
  36.         Data2 = "Data2";  
  37.     }  
  38.     public virtual object Clone() {  
  39.         return this.MemberwiseClone();  
  40.     }  
  41. }  
Pros
  • Easy for developers.
  • Very little code to write.
  • Easy to understand.
  • It copies any fields/properties type (simple and complex).
  • It doesn’t need to mark the class with any special attribute.
Cons
  • It can be called inside the class only because it is a protected method.
  • It must be implemented in all classes to clone.
  • The reference properties of an object to clone can't be copied, they are linked.
  • The clone method returns an object, consequently, we will have to do casting each time we use it.
If we try a completely in-depth copy, we have to do manual assignments of all references properties,
  1. public virtual object Clone()\  
  2. {  
  3.     var result = this.MemberwiseClone();  
  4.     // Manual assignments   
  5.     result.Adress = new Address {  
  6.         City = this.Adress.City,  
  7.             Street = this.Adress.Street,  
  8.             ZipCode = this.Adress.ZipCode  
  9.     };  
  10.     result.Mails = new Collection < string > ();  
  11.     this.Mails.ToList().ForEach(a => result.Mails.Add(a));  
  12.     return result;  
  13. }  
Stream - Formatters
 
This cloning type uses serialization to process the object's copies. It makes in-depth copies but forces you to mark the class objects with any serialization attribute.
 
In this site, there is a very good example from our companion Surajit Datta Article, we will take this code for our example.
 
Since we don’t write this code in all clone classes, we will create an Extension Method.
  1. public static T CloneObjectSerializable < T > (this T obj) where T: class {  
  2.     MemoryStream ms = new MemoryStream();  
  3.     BinaryFormatter bf = new BinaryFormatter();  
  4.     bf.Serialize(ms, obj);  
  5.     ms.Position = 0;  
  6.     object result = bf.Deserialize(ms);  
  7.     ms.Close();  
  8.     return (T) result;  
  9. }  
Call
  1. Customer customer2 = customer1.CloneObjectSerializable();  
If running this code, it throws SerializationException:
 
 
To prevent these errors, we mark the class with Serialization Attribute.
  1. [Serializable]  
  2. public class Customer  
Pros
  • Easy for developer
  • Easy to write in an Extension Method, therefore we implement once.
  • It copies any fields/properties types (simple and complex)
  • It implements a deep copy.
  • It doesn’t necessarily call inside the class because it is an object extension method.
  • Returns a Generic Type, therefore we don't have to apply boxing/unboxing.
Cons
  • It needs to mark with a special attribute.
  • For your implementation, it needs more code and logic.
This method can be used with ICloneable, which perfectly maintains all of its virtues.
  1. public virtual object Clone()  
  2. {  
  3.    return this.CloneObjectSerializable();  
  4. }  

Conclusions

 
There isn’t a magic way to clone objects in .NET Framework, but these two models make the work easier. In the development world, it's necessary to be clear about cloning objects, this misunderstanding is often the consequence of errors and unexpected behaviors in our programs.