R
Ron M. Newman
Hi,
If I declare an assembly within a method and call ".Load" on it...
public void foo()
{
Assembly asm = Assembly.Load("myassembly.dll");
}
1) What happens to the actual assembly.dll when the method goes out of
scope? will it close?
2) what would happen to types I instantiate that are in that assembly? will
they "survive" and be healthy? (providing of course they're still in scope)
thanks,
Ron
If I declare an assembly within a method and call ".Load" on it...
public void foo()
{
Assembly asm = Assembly.Load("myassembly.dll");
}
1) What happens to the actual assembly.dll when the method goes out of
scope? will it close?
2) what would happen to types I instantiate that are in that assembly? will
they "survive" and be healthy? (providing of course they're still in scope)
thanks,
Ron