I am wondering: if I create a singleton class with a private constructor and one static method which will return instance of this class and I put it to assembly, what will happen if I access this instance from two different applications?
Do the applications will always share the same instance of the singleton?
And if both of those applications unload from the memory the instance will be freed as well?
Thanks.