views:

32

answers:

1

Possible Duplicate:
ReflectionOnlyLoadFrom & Unload?

I know you can't noramlly unload assemblies in .NET without messing around with App Domains. But is there a way to unload it if I only load it for relection?

Reflection.Assembly.ReflectionOnlyLoadFrom
+3  A: 

No, there is no way to unload an assembly without unloading the AppDomain itself. See this question: ReflectionOnlyLoadFrom & Unload?

Giorgi