6

このコードを使用してオブジェクトをシリアル化する場合:

public object Clone()
{
    var serializer = new DataContractSerializer(GetType());
    using (var ms = new System.IO.MemoryStream())
    {
        serializer.WriteObject(ms, this);
        ms.Position = 0;
        return serializer.ReadObject(ms);
    }
}

関係をコピーしないことに気付きました。これを実現する方法はありますか?

4

4 に答える 4

16

を受け入れるコンストラクター オーバーロードを使用し、preserveObjectReferencesそれを true に設定するだけです。

using System;
using System.Runtime.Serialization;

static class Program
{
    public static T Clone<T>(T obj) where T : class
    {
        var serializer = new DataContractSerializer(typeof(T), null, int.MaxValue, false, true, null);
        using (var ms = new System.IO.MemoryStream())
        {
            serializer.WriteObject(ms, obj);
            ms.Position = 0;
            return (T)serializer.ReadObject(ms);
        }
    }
    static void Main()
    {
        Foo foo = new Foo();
        Bar bar = new Bar();
        foo.Bar = bar;
        bar.Foo = foo; // nice cyclic graph

        Foo clone = Clone(foo);
        Console.WriteLine(foo != clone); //true - new object
        Console.WriteLine(clone.Bar.Foo == clone); // true; copied graph

    }
}
[DataContract]
class Foo
{
    [DataMember]
    public Bar Bar { get; set; }
}
[DataContract]
class Bar
{
    [DataMember]
    public Foo Foo { get; set; }
}
于 2010-03-10T13:20:21.470 に答える
1

クラスに注釈を付けるか[DataContract]、DatacontractSerializerのコンストラクターに子タイプを追加します。

var knownTypes = new List<Type> {typeof(Class1), typeof(Class2), ..etc..};
var serializer = new DataContractSerializer(GetType(), knownTypes);
于 2010-03-10T13:09:59.433 に答える
1

ディープクローンを実行するには、バイナリシリアライザーの使用を検討してください。

public static object CloneObject(object obj)
{
    using (var memStream = new MemoryStream())
    {
        var binaryFormatter = new BinaryFormatter(
             null, 
             new StreamingContext(StreamingContextStates.Clone));
        binaryFormatter.Serialize(memStream, obj);
        memStream.Seek(0, SeekOrigin.Begin);
        return binaryFormatter.Deserialize(memStream);
    }
}
于 2010-03-10T13:14:22.533 に答える
0

シリアル化/逆シリアル化のステップでオブジェクトのIDを保持するには、バイナリシリアライザーが必要です。

于 2010-03-10T13:12:51.737 に答える