Is there a way to tell the CLR to load the class library assembly as a neutral domain? A use case is MSCRM plugins, in which each plug-in is loaded into a separate application domain and needs the services of a βusefulβ library, which can be quite large (10+ megabytes), and it would be neat to be able to load one copy of the code page, which is common to all application domains, thereby reducing the memory size of the entire process.
source share