views:

14

answers:

1

If two clients do Activation.GetObject, using the Singleton approach, and the same address, are they going to get the same instance of the class? Or will each client get a different instance?

+2  A: 

Their proxies will point to same instance.

Andrey