how to load c# object side by side
Posted
by mamu
on Stack Overflow
See other posts from Stack Overflow
or by mamu
Published on 2010-05-16T15:15:53Z
Indexed on
2010/05/16
15:20 UTC
Read the original article
Hit count: 196
We have serialized value of some objects persisted. Now we want to make substantial changes to some objects.
So what i want to do is load older version of object using old assembly then deserialize and serialize again with newer version of the object. I can have convert method which can transform old object to new one.
i have been converting object on fly on deserializer but in this case it's almost new object with same name.
© Stack Overflow or respective owner