If I do an Assembly.ReflectionOnlyLoadFrom(), is it possible to unload the assembly?
Assembly.ReflectionOnlyLoadFrom()
Or, can it be unloaded only if it is in a separate AppDomain, as w
You can create an instance in the new AppDomain and execute your code in that instance. Please see full example here: https://stackoverflow.com/a/37970043/797249
Yes, you need to load it into a separate AppDomain, then unload the entire AppDomain.