Skip to content

Instantly share code, notes, and snippets.

@juusimaa
Created June 24, 2013 05:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save juusimaa/5847996 to your computer and use it in GitHub Desktop.
Save juusimaa/5847996 to your computer and use it in GitHub Desktop.
Extension method for deep cloning serializable objects.
public static T DeepClone<T>(this T a)
{
using (var stream = new MemoryStream())
{
var formatter = new BinaryFormatter();
formatter.Serialize(stream, a);
stream.Position = 0;
return (T)formatter.Deserialize(stream);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment