Reputation: 3135
Assume object A has 6 fields, now the object A is serialized, after some time the 3 more fields are added and the object is deserialized.
Upvotes: 2
Views: 550
Reputation: 11
.Net has something called "Version Tolerant Serialization" ;)
Check out this easy to understand example on object serialization:
http://programming.flashadventures.com/c-sharp/writing-objects-to-files-serialization/
Upvotes: 0