external-assemblies

Serializing and Deserializing External Assembly in C#

I wrote a plugin system and I want to save/load their properties so that if the program is restarted they can continue working. I use binary serialization. The problem is they can be serialized but not deserialized. During the deserialization "Unable to find assembly" exception is thrown. How can I restore serialized data? ...

.NET Assembly Referencing 101

I have the following class located in Assembly A. The assembly has a reference to StructureMap 2.6.1. public static class Bootstrapper { public static void Bootstrap(string databaseName) { StructureMapBootstrapper.Bootstrap(databaseName); } } I'm referencing Assembly A in a completely different Assembly (B) and I"m...