3

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
Community
  • 1
  • 1
Jonathan Allen
  • 68,373
  • 70
  • 259
  • 447

1 Answers1

7

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

Community
  • 1
  • 1
Giorgi
  • 30,270
  • 13
  • 89
  • 125