1

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.

logicnp
  • 5,796
  • 1
  • 28
  • 32
  • 1
    Yes, you can load an assembly in run-time in dotnet. – AgentFire Sep 16 '14 at 16:44
  • I know assemblies can be loaded from memory, but my question is whether .Net will use the AssemblyResolve event when looking for satellite assemblies. – logicnp Sep 17 '14 at 04:45

1 Answers1

1

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)
Vikas Gupta
  • 4,455
  • 1
  • 20
  • 40
  • I know assemblies can be loaded from memory, but my question is whether .Net will use the AssemblyResolve event when looking for satellite assemblies. – logicnp Sep 17 '14 at 04:46