In my C# application I am loading several assemblies into one Application. In order to quickly exchange objects between the assemblies, I am looking for an existing class in the commonly available .NET namespace that I could "abuse" to exchange generic objects.
I was thinkging about System.ConfigurationManager.AppSettings
but this one supports strings only. Is there one which has an object
type?
I know this is a terrible solution to exchange data between assemblies, but I cant change the interfaces right now.