Last active
October 12, 2021 11:22
-
-
Save Sov3rain/b6749fc8fd1c07d4b47a2507a92ea14d to your computer and use it in GitHub Desktop.
Deep cloning objects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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