Can anyone know what happening 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 is not throwing an exception, maybe the two local variable points to the same appdomain?
http://msdn.microsoft.com/en-us/library/47e8e141.aspx
As you can guess it could only get the user confused if you use the Friendly name in a UI