Click here to Skip to main content
15,885,278 members
Articles / Programming Languages / C#
Article

Base class for cloning an object in C#

Rate me:
Please Sign up or sign in to vote.
4.55/5 (43 votes)
29 Dec 20022 min read 537.7K   2.1K   104   100
This class implements the ICloneable for you.

Introduction

Although the subject of cloning in the real world is controversial, in the .NET world it is still safe to use, or isn’t it?

How many times did you find yourself implementing the ICloneable interface for your class, but every time you do the same code, or you do a specific code for each class. And what about, when you add a new field to the class, and you forgot to update the Clone method for the new field. Believe me, this sort of thing leads to annoying bugs.

This is where my class comes to the rescue. With a little help from the reflection mechanism, I created an abstract class that implements the ICloneable interface with the default behavior. Now you are probably asking yourself: What is the default behavior? Well I’m glad you asked. Default behavior for cloning, is to clone every field in the class by the following algorithm:

  1. For each field in the class, ask if it supports the ICloneable interface.
  2. If the field doesn’t support the ICloneable interface, then the field is set in the regular manner, which means that if this field is a value type, then the value will be copied, but if the field is a reference type, the clone field will be pointing to the same object.
  3. If the field supports the ICloneable interface, we use its Clone method to set it in the clone object.
  4. If the field supports the IEnumerable interface, then we need to check if it supports the IList or the IDictionary interface. If it does, then we iterate the collection, and for each item in the collection we ask if it supports the ICloneable interface.

How to use

All you have to do to make your class support the ICloneable interface, is to derive your class from the BaseObject as follow:

C#
public class MyClass : BaseObject
{
    public string myStr ="test";
    public int id;
}

public class MyContainer : BaseObject
{
    public string name = "test2";
    public MyClass[] myArray= new MyClass[5];

    public class MyContainer()
    {
        for(int i=0 ; i<5 ; i++)
        {
             this.myArray[I] = new MyClass();
        }
    }
}

Now in the Main method you can do the following:

C#
static void Main(string[] args)
{
    MyContainer con1 = new MyContainer();
    MyContainer con2 = (MyContainer)con1.Clone();

   con2.myArray[0].id = 5;
}

When inspecting the con2 instance you will see that the MyClass instance in the first index was changed to 5, but the con1 instance remained without changes. So you can see that any field you will add to your class, which support the ICloneable interface will be cloned as well. Furthermore, if the field supports the IList interface or the IDictionary interface, the method will detect it and will loop through all the items and will try to clone them as well.

Implementation

C#
/// <summary>
/// BaseObject class is an abstract class for you to derive from.
/// Every class that will be dirived from this class will support the 
/// Clone method automaticly.<br>
/// The class implements the interface ICloneable and there 
/// for every object that will be derived <br>
/// from this object will support the ICloneable interface as well.
/// </summary>

public abstract class BaseObject : ICloneable
{
    /// <summary>
    /// Clone the object, and returning a reference to a cloned object.
    /// </summary>
    /// <returns>Reference to the new cloned 
    /// object.</returns>
    public object Clone()
    {
        //First we create an instance of this specific type.
        object newObject  = Activator.CreateInstance( this.GetType() );

        //We get the array of fields for the new type instance.
        FieldInfo[] fields = newObject.GetType().GetFields();

        int i = 0;

        foreach( FieldInfo fi in this.GetType().GetFields() )
        {
            //We query if the fiels support the ICloneable interface.
            Type ICloneType = fi.FieldType.
                        GetInterface( "ICloneable" , true );

            if( ICloneType != null )
            {
                //Getting the ICloneable interface from the object.
                ICloneable IClone = (ICloneable)fi.GetValue(this);

                //We use the clone method to set the new value to the field.
                fields[i].SetValue( newObject , IClone.Clone() );
            }
            else
            {
                // If the field doesn't support the ICloneable 
                // interface then just set it.
                fields[i].SetValue( newObject , fi.GetValue(this) );
            }

            //Now we check if the object support the 
            //IEnumerable interface, so if it does
            //we need to enumerate all its items and check if 
            //they support the ICloneable interface.
            Type IEnumerableType = fi.FieldType.GetInterface
                            ( "IEnumerable" , true );
            if( IEnumerableType != null )
            {
                //Get the IEnumerable interface from the field.
                IEnumerable IEnum = (IEnumerable)fi.GetValue(this);

                //This version support the IList and the 
                //IDictionary interfaces to iterate on collections.
                Type IListType = fields[i].FieldType.GetInterface
                                    ( "IList" , true );
                Type IDicType = fields[i].FieldType.GetInterface
                                    ( "IDictionary" , true );

                int j = 0;
                if( IListType != null )
                {
                    //Getting the IList interface.
                    IList list = (IList)fields[i].GetValue(newObject);

                    foreach( object obj in IEnum )
                    {
                        //Checking to see if the current item 
                        //support the ICloneable interface.
                        ICloneType = obj.GetType().
                            GetInterface( "ICloneable" , true );
                        
                        if( ICloneType != null )
                        {
                            //If it does support the ICloneable interface, 
                            //we use it to set the clone of
                            //the object in the list.
                            ICloneable clone = (ICloneable)obj;

                            list[j] = clone.Clone();
                        }

                        //NOTE: If the item in the list is not 
                        //support the ICloneable interface then in the 
                        //cloned list this item will be the same 
                        //item as in the original list
                        //(as long as this type is a reference type).

                        j++;
                    }
                }
                else if( IDicType != null )
                {
                    //Getting the dictionary interface.
                    IDictionary dic = (IDictionary)fields[i].
                                        GetValue(newObject);
                    j = 0;
                    
                    foreach( DictionaryEntry de in IEnum )
                    {
                        //Checking to see if the item 
                        //support the ICloneable interface.
                        ICloneType = de.Value.GetType().
                            GetInterface( "ICloneable" , true );

                        if( ICloneType != null )
                        {
                            ICloneable clone = (ICloneable)de.Value;

                            dic[de.Key] = clone.Clone();
                        }
                        j++;
                    }
                }
            }
            i++;
        }
        return newObject;
    }
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralGreat article Pin
Cohen Shwartz Oren16-Aug-04 20:16
Cohen Shwartz Oren16-Aug-04 20:16 
GeneralClone array of objects is not working as expected Pin
Babu Aboobacker E.I11-Aug-04 17:00
Babu Aboobacker E.I11-Aug-04 17:00 
GeneralBug fix: For uninitialized fields in original Pin
mbearden25-Feb-04 6:31
mbearden25-Feb-04 6:31 
GeneralRe: Bug fix: For uninitialized fields in original Pin
Hugo Pais Batista26-Oct-04 9:09
Hugo Pais Batista26-Oct-04 9:09 
GeneralIf you want non-public fields cloned... Pin
mbearden25-Feb-04 6:12
mbearden25-Feb-04 6:12 
GeneralIdeas with read-only properties Pin
Boca9-Jan-04 4:15
Boca9-Jan-04 4:15 
JokeRe: Ideas with read-only properties Pin
astromenix16-Jul-07 4:23
astromenix16-Jul-07 4:23 
Generalfunny, I got the same myArray[0]'s value Pin
ray_linn21-Dec-03 17:01
ray_linn21-Dec-03 17:01 
I download the sourcecode from the web, and write a simple test as the description..
but both con1 and con2 output the same result ...5 ...

what is the matter??Roll eyes | :rolleyes:
GeneralRe: funny, I got the same myArray[0]'s value Pin
ray_linn21-Dec-03 18:07
ray_linn21-Dec-03 18:07 
QuestionSimpler way? Pin
Anonymous12-Dec-03 2:12
Anonymous12-Dec-03 2:12 
AnswerRe: Great! Pin
Anonymous1-Feb-04 8:38
Anonymous1-Feb-04 8:38 
AnswerRe: Simpler way? Pin
Ungi.4-Mar-04 22:53
Ungi.4-Mar-04 22:53 
GeneralRe: Simpler way? Pin
Anonymous30-Mar-04 18:53
Anonymous30-Mar-04 18:53 
GeneralRe: Simpler way? Pin
gyxi28-May-04 3:02
gyxi28-May-04 3:02 
AnswerRe: Simpler way? Pin
Anonymous27-Jul-04 15:19
Anonymous27-Jul-04 15:19 
GeneralRe: Simpler way? Pin
Member 13493797-Sep-04 3:07
Member 13493797-Sep-04 3:07 
GeneralRe: Simpler way? Pin
JoopJopieJopie18-Sep-04 8:14
JoopJopieJopie18-Sep-04 8:14 
GeneralRe: Simpler way? Pin
BluePineNeedles23-Feb-05 11:30
BluePineNeedles23-Feb-05 11:30 
GeneralRe: Simpler way? Pin
Ista2-Feb-06 5:47
Ista2-Feb-06 5:47 
AnswerRe: Simpler way? Pin
Ista2-Feb-06 5:45
Ista2-Feb-06 5:45 
AnswerRe: Simpler way? Pin
Marco225023-May-06 10:15
Marco225023-May-06 10:15 
AnswerRe: Simpler way? Pin
dotnetprgrmmr17-Jul-06 11:14
dotnetprgrmmr17-Jul-06 11:14 
AnswerRe: Simpler way? Pin
fshost3-Jan-07 14:20
fshost3-Jan-07 14:20 
GeneralRe: Simpler way? Pin
johnmcfet25-Jun-07 10:48
johnmcfet25-Jun-07 10:48 
GeneralMemberwiseClone() Pin
dafdadfafefgtrhqer19-Nov-03 20:25
dafdadfafefgtrhqer19-Nov-03 20:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.