Real-Time (?) updating of a file...
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Hello experts, I'm using Serialization to store a collection, and retreive it from a file. However, there are times in my application that a single item inside a collection should be written/read. I'm currently marking my collection class, and all the items classes it stores with the Serializable attribute. I'm using a BinaryFormatter and a FileStream to serialize it. How can I update the file without writing the entire collection again and again? Thanks in advance, Shy.