Singleton assemblies

  • Thread starter Thread starter Lev
  • Start date Start date
L

Lev

Hi

Is there a way to make a "singleton" assembly? I want to make my assembly
such that only one instance will ever exist. This means that I want to load
it up from a process I control. This process will via the assembly that I
want to have as a singleton load other assemblies that have references to
the singleton assembly (but without any additional copies of the "singleton"
assembly being loaded).

TIA
 
I think the behavior you want is the default behavior. The whole point of a dll is that you only load it once, even if multiple applications are using it.
 
Back
Top