A
Ashutosh
Hi,
I have this simple code
AppDomain d = AppDomain.CreateDomain("test123");
Assembly a = d.Load("ClassLibrary1, Version=1.0.0.0,
Culture=neutral, PublicKeyToken=c4510fb7f9c15154");
MethodInfo m = o.GetType().GetMethod("Hello");
m.Invoke(o, null);
AppDomain.Unload(d);
after the Unload statement, the ClassLibary1 is still loaded into the
process address space. How can I make sure that it's unloaded?
Thanks & Regards,
Ashutosh
I have this simple code
AppDomain d = AppDomain.CreateDomain("test123");
Assembly a = d.Load("ClassLibrary1, Version=1.0.0.0,
Culture=neutral, PublicKeyToken=c4510fb7f9c15154");
MethodInfo m = o.GetType().GetMethod("Hello");
m.Invoke(o, null);
AppDomain.Unload(d);
after the Unload statement, the ClassLibary1 is still loaded into the
process address space. How can I make sure that it's unloaded?
Thanks & Regards,
Ashutosh