Maintain object references through Serialize/Deserialize

后端 未结 4 1044
渐次进展
渐次进展 2021-01-20 19:57

When serializing, I would like to serialize an object only once, then any references to that object should be serialized as a reference to the object. This is because, when

相关标签:
4条回答
  • 2021-01-20 20:22

    If you're using .NET 3 or later, you should use the DataContractSerializer and set PreserveObjectReferences to true.

    0 讨论(0)
  • 2021-01-20 20:33

    your code example won't work simply because the XmlSerializer does not save reference information, during the serialization process it will simply write the data for obj to the stream twice this means that when you deserialize it will read the data for obj as two different instances, it has no way of knowing that they referred to the same instance at serialization time. using the DataContractSerializer mentioned before should give you what you want but note that it uses non standard xml (see: http://msdn.microsoft.com/en-us/library/system.runtime.serialization.datacontractserializer.aspx)

    0 讨论(0)
  • 2021-01-20 20:38

    You will have to do that by giving the objects identifiers other than their object reference.

    An object's reference is essentially it's pointer. Since you cannot manipulate pointers directly in safe code must give the object some other unique name.

    0 讨论(0)
  • 2021-01-20 20:39

    Not sure if this is what you would like to hear... But lets just think about what you are trying to do.

    You only have the need to serialize an object when: a) You want to store it somewhere an latter on retrieve the information. b) You want to send the object to another application.

    A reference is nothing more than a pointer to where the object is. So in either case you simply cannot access the memory because in a) it is reserved for your application and in b) it is another machine and it doesn't even exists.

    http://en.csharp-online.net/Glossary:Definition_-_Reference_type

    0 讨论(0)
提交回复
热议问题