G
Guest
Hi
am trying to find a way to backward support serialized files of older version
Example:
Given a class
class MyClass
{
int a;
int b;
}
Serialize MyClass using SoapFormatter to myclass.bin
add int c; to MyClass
class MyClass
{
int a;
int b;
int c;//newly added
}
If i deserialize using SoapFormatter now from myclass.bin (created before
adding int c)... exception will thrown..
is there anyway to support 'older' version of serialized soap files besides
manually parsing it?
many thanks
tham
am trying to find a way to backward support serialized files of older version
Example:
Given a class
class MyClass
{
int a;
int b;
}
Serialize MyClass using SoapFormatter to myclass.bin
add int c; to MyClass
class MyClass
{
int a;
int b;
int c;//newly added
}
If i deserialize using SoapFormatter now from myclass.bin (created before
adding int c)... exception will thrown..
is there anyway to support 'older' version of serialized soap files besides
manually parsing it?
many thanks
tham