Hi,
In my program I dynamically create an instance of a class (from an external dll),
which is responsible storing and loading data with serialization.
The serialization is working fine, but the deserialization doesn't work,
since the assembly where the class is located is not loaded.
(At least that is what the error message tells me:
Unable to find assembly 'AT_Memory, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'.)
How can I fix this without referencing the assemblies at design time?
If needed, I'll try to make a short code example.
In my program I dynamically create an instance of a class (from an external dll),
which is responsible storing and loading data with serialization.
The serialization is working fine, but the deserialization doesn't work,
since the assembly where the class is located is not loaded.
(At least that is what the error message tells me:
Unable to find assembly 'AT_Memory, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'.)
How can I fix this without referencing the assemblies at design time?
If needed, I'll try to make a short code example.