Reputation: 5836
Must satellite assemblies be present on disk in appropriately named sub-folders. Can they be loaded from memory, for example, via the AppDomain.AssemblyResolve event?
I know assemblies can be loaded from memory, but will .Net use the AssemblyResolve event when looking for satellite assemblies.
Upvotes: 1
Views: 325
Reputation: 4465
In addition to AppDomain.AssemblyResolve event, you are probably looking for a bunch of overloads for loading assemblies.. like so
http://msdn.microsoft.com/en-us/library/h538bck7(v=vs.110).aspx
public static Assembly Load(byte[] rawAssembly)
Upvotes: 1