Skip to content

Instantly share code, notes, and snippets.

@Sov3rain
Last active October 12, 2021 11:22
Show Gist options
  • Save Sov3rain/b6749fc8fd1c07d4b47a2507a92ea14d to your computer and use it in GitHub Desktop.
Save Sov3rain/b6749fc8fd1c07d4b47a2507a92ea14d to your computer and use it in GitHub Desktop.
Deep cloning objects
static public class ObjectExtensions
{
static public T DeepClone<T>(this T a)
{
using (MemoryStream stream = new MemoryStream())
{
BinaryFormatter 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