Tagged Questions
6
votes
4answers
428 views
Can I deserialize an object when the underlying class has been changed slightly?
I've written a custom class MyClass and marked it with the <Serializable()> attribute. I have a set of binary files on my hard drive that I've serialized using BinaryFormatter that came from ...
1
vote
1answer
35 views
Deserialization of optional fields from BinaryFormatter
I have an application that serializes data using BinaryFormatter. A member was added to the class that was serialized from one version to the next without changing the class name. Code was added to ...
1
vote
3answers
150 views
Assembly Independent Serialization in .NET
I use Serialization/DeSerialization Technique. BinaryFormatter class.
Each time when new assembly is created the BinaryFormatter can't Deserialize binary data even if the class structure is the same, ...
0
votes
0answers
71 views
Deserializing a Concrete Class As an Interface Using a BinaryFormatter in C#
I have run across an issue where I am getting a exception thrown when trying to deserialize what was once a concrete class into an interface using a BinaryFormatter (C#, .NET Framework 4.0).
To give ...
0
votes
2answers
177 views
BinaryFormatter serialization/deserialization alternative in Android
I have a class serialized in C# using BinaryFormatter serialize method. Is there any way i can de-serialize it in android application. I mean is there any alternatives of BinaryFormatter in android?