Can someone find out what happens if we create two appdomains with the same friendly name?
static void Main(string[] args) { var myDomain = AppDomain.CreateDomain("mydomain"); var myDomain2 = AppDomain.CreateDomain("mydomain"); }
As I noticed, this does not throw an exception, maybe two local variables point to the same appdomain?
source share