I am trying to load an assembly to a different AppDomain than that of current one. I was suggested to use AppDomain.CreateDomain method for this. But it seems like the AppDomain class in .NET 4.5 doesn't have CreateDomain() method anymore.
AppDomain newAppDomain = new AppDomain.CreateDomain();
CreateDomain is highlighted in red as intellisense is not suggesting any method. I wonder if there is an alternative way to do this.