Is it possible to deserialize part of a binary file?
Basically I have an object similar to below, which I serialize into a binary file.
public class
How about putting the Name and Valueinto a superclass and serializing them separately?
Name
Value
Alternatively, you could maintain a Dictionary and serialize that into one file.