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, but the Assembly version differs.
Is it possible to Deserialize binary buffer with no checking the assembly version if the class structure stays unchanged?
I use Serialization/DeSerialization Technique. BinaryFormatter class. Each time when new assembly is created the
Share
Try this:
Thread Poster Added:
Yes, it works. Just make sure if any types of System.Generic or other Libs in the binary data are present, then you have to pass them through without changes.
“ResizableControls” – old Assembly lib’ name, “EntityLib” – new Assembly name.
Also, the Version number is to be replaced as well, on demand.
Thanks, it is exactly what I needed.