1) .NET Assembly MyAssembly.dll implements a Singleton class MyClass
2) A .NET APP has a reference to MyAssembly.dll and uses MyClass
3) A .NET ActiveX MyActiveX.dll implements a COM Visible class wich in turn references to MyClass in MyAssembly.dll
My question is: if the app and the ActiveX are running at the same time (the ActiveX in a web page), do I have one or two instances of MyAssembly.dll loaded? I need it to be one instance for the singleton to work.
Thanks