Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
416 views
in Technique[技术] by (71.8m points)

copy a class, C#

Is there a way to copy a class in C#? Something like var dupe = MyClass(original).

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You are probably talking about a deep copy (deep copy vs shallow copy)?

You either have to:

  1. implement (hard code) a method of your own,
  2. try to implement (or find) an implementation that uses Reflection or Emit to do it dynamically (explained here),
  3. use serialization and deserialization to create a deep copy, if the object is marked with a [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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...