Shared static classes between AppDomains in loaded library code
- by Christian Stewart
I'm working on a program in which I want to do something similar to what the Photon Server system does:
Offer a common "API" class library, which contains common data classes, enumerations, and interfaces for working with the host program.
Have client programs (class libraries) reference this DLL and implement interfaces listed within it.
Have…