Click here to Skip to main content
15,867,594 members
Articles / Web Development / ASP.NET
Article

Object Cloning Using Generic in C#

Rate me:
Please Sign up or sign in to vote.
1.76/5 (15 votes)
20 Apr 2008CPOL 51.5K   360   12   5
This utility creates a new instance of your class using generic.

Introduction

In one of my project I came across a situation which I needed to make a clone of an object and unfortunately C# doesn’t have such utility or maybe there is and simply I don’t know yet! Anyway, first I started with MSDN and look at the ICloneable interface … and then I find some interesting articles like this one: Base class for cloning an object in C#. However I finally decided to write my own Cloning Class using generic and XmlSerializer! The CloneManager is a simple class that can create a new instance of any class. Moreover your class doesn’t require having any attribute decoration!

Using the code

All you have to do is to add reference to CloneManager project and create an instance of this class in your source code as shows below.

Code Example:

//Create an instance of clone manager
IClone cloneManager = new CloneManager();

MyClass newInstance = cloneManager.Clone(instance);

Implementation

The CloneManager implements IClone interface which exposes only one method. The Clone method simply serialize the instance into a memory stream and deserialize this stream to a new instance of object using XmlSerializer and returns that to the caller.

public interface IClone 
{ 
    T Clone(T instance) where T : class; 
}



using System;
using System.Xml.Serialization;
using System.IO;

namespace Demo.Clone
{
    public class CloneManager:IClone
    {
        /// Clones the specified instance. 
        /// Returns a new instance of an object.
        T IClone.Clone(T instance){
            XmlSerializer serializer = new XmlSerializer(typeof(T));
            MemoryStream stream = new MemoryStream();
            serializer.Serialize(stream, instance);
            stream.Seek(0, SeekOrigin.Begin);
            return serializer.Deserialize(stream) as T;
        }
    }
}

Happy coding!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


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

Comments and Discussions

 
GeneralSilverlight Pin
Ivan Kochurkin21-May-11 14:00
Ivan Kochurkin21-May-11 14:00 
Generaluse this instead Pin
Jespr21-Apr-08 7:43
Jespr21-Apr-08 7:43 
GeneralRe: use this instead Pin
Kurush Rastkar21-Apr-08 12:21
Kurush Rastkar21-Apr-08 12:21 
GeneralIt's plagiary from Lhotka CSLA.NET library (C# Bussiness Object book) Pin
Roman Dinnik21-Apr-08 4:29
Roman Dinnik21-Apr-08 4:29 
GeneralThis will only work for a small number of classes Pin
leppie21-Apr-08 1:46
leppie21-Apr-08 1:46 

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.