Hello,
I want to deserialize a file that was serialized in another solution (assembly). I copied all the classes that was serialized, and put them in my project, thinking this would be enough. However I get this message when trying to deserialize the file:
System.Runtime.Serialization.SerializationException: Cannot
find the assembly 96wellShuttleSW, Version=1.0.2382.20980, Culture=neutral, Pub
licKeyToken=null.
at System.Runtime.Serialization.Formatters.Binary.BinaryAssemblyInfo.GetAssem
bly()
Now, the 96wellShuttleSW is the assembly that created the file. What does it have to do with this, I thought everything needed (that is the class instances) were serialized in the binary object Is there any way around this

serialization from file failed in another assembly
&#169&#59; Ţĩмό Şąļσмāĸ
Juniorscone
alba1314
vgta
You can use SerializationBinder to bind the classes you copied. You can find more info about serialization binder at
http://msdn2.microsoft.com/en-us/library/system.runtime.serialization.serializationbinder.aspx
I hope this helps
Scott Chang