Hey,
I have created a new AppDomain with a unique name. But i do not want to store that name during the whole application runtime.
So i ask you guys if it is possible to get that created AppDomain by name back.
Sub Main()
AppDomain.CreateDomain("TestDomain")
End Sub
so How do i get the AppDomain with the name "TestDomain" back so i can unload it later without storing that AppDomain globally?