Is there a way to copy an object in C#? Something like:
var dupe = MyClass(original);
I want them to be equal such that all data members are identical, but not share the same memory location.
You are probably talking about a deep copy (deep copy vs shallow copy)?
You either have to:
[Serializable]
attribute.public static T DeepCopy<T>(T other)
{
using (MemoryStream ms = new MemoryStream())
{
BinaryFormatter formatter = new BinaryFormatter();
formatter.Serialize(ms, other);
ms.Position = 0;
return (T)formatter.Deserialize(ms);
}
}
To get a shallow copy, you can use the Object.MemberwiseClone()
method, but it is a protected method, which means you can only use it from inside the class.
With all the deep copy methods, it is important to consider any references to other objects, or circular references which may result in creating a deeper copy than what you wanted.
⚠️ Security warning: Please read about the danger of using BinaryFormatter
which may include remote code execution... You can instead use the preferred alternatives listed in the provided link.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With