Pauseable/Resumable XML serialization in C#



I have a really big collection of objects, and objects are constantly incoming, so I want to serialize them one-by-one or in batches. The file already contains serialized collection of objects of the same type. I want my file to be deserializable at any moment of time, and I want to pause/resume the serialization. The main question is: how can I serialize a new object into existing file, into correct position in an existing serialized collection?


No comments:

Post a Comment