up vote 1 down vote favorite
share [g+] share [fb]

Is it possible to deep clone an object in the compact framework? I was hoping to use IClonable and memberwiseclone() however this only performs a shallow copy.

Any ideas on how to do this please using C# 2.0?

Many thanks,

Morris

link|improve this question

60% accept rate
feedback

1 Answer

up vote 3 down vote accepted

I've implemented a deep object copy by making my objects serializable [Serializable()] and using the following method.

public static ObjectType CopyObject<ObjectType>(ObjectType oObject)
{
  XmlSerializer oSeializer = null;

  //Creates the serializer
  oSeializer = new XmlSerializer(oObject.GetType);

  //Use the stream
  using (MemoryStream oStream = new MemoryStream())
  {
    //Serialize the object
    oSeializer.Serialize(oStream, oObject);

    //Set the strem position
    oStream.Position = 0;

    //Return the object
    return (ObjectType)oSeializer.Deserialize(oStream);
  }
}
link|improve this answer
Folks, Thanks for your advice, much appreciated. Cheers Morris – Morrislgn Nov 6 '09 at 8:46
Just be careful, XML serialization doesn't handle aliasing or cycles. – Jeffrey Hantin Oct 17 '11 at 22:18
feedback

Your Answer

 
or
required, but never shown

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