S
Sebastian
I have a List of objects. I have a requirement to periodically
Serialize the List to disk incrementally i.e. Serialize the List from
the last write to disk.
Is this possible?
calling BinaryFormatter.Serialize(FileStream, List) multiple times
does not seem to append the List from the subsequent call.
e.g.
BinaryFormatter.Serialize(FileStream, list1) //Serializes list1
BinaryFormatter.Serialize(FileStream, list2) //Does not seem to
append list2
Serialize the List to disk incrementally i.e. Serialize the List from
the last write to disk.
Is this possible?
calling BinaryFormatter.Serialize(FileStream, List) multiple times
does not seem to append the List from the subsequent call.
e.g.
BinaryFormatter.Serialize(FileStream, list1) //Serializes list1
BinaryFormatter.Serialize(FileStream, list2) //Does not seem to
append list2