user379898
user379898

Reputation: 63

Load assembly from memory

I am porting a Java application where classes are loaded and "executed" at runtime from memory (a byte array). I am trying to achieve the same thing in C#, but I am having problems (System.IO.FileNotFoundException exceptions) when trying to load assemblies from byte arrays (using the AppDomain.Load method).

static void Main(string[] args)
{
    var domain = AppDomain.CreateDomain("foo");

    domain.AssemblyResolve += new ResolveEventHandler(domain_AssemblyResolve);

    var assembly = domain.Load("MyAssembly");
}
static Assembly  domain_AssemblyResolve(object sender, ResolveEventArgs args)
{
    // ...
    return Assembly.ReflectionOnlyLoad(File.ReadAllBytes(@"C:\MyAssembly.exe"));
}

Is there a way to load them without the need to persist this byte array into the file system?

Simplifying the idea, we want to have the ability to execute and change (update) code dynamically. We use separate application domains to "load/unload" assemblies.

Upvotes: 4

Views: 3295

Answers (2)

Jason Evans
Jason Evans

Reputation: 29186

I've just tried this code:

static void Main(string[] args)
        {

            var h = File.ReadAllBytes(@"C:\MyAssembly.exe");

            var g = Assembly.Load(h);            
        }

and it worked fine - I did not get any exceptions. Are you 100% sure that the target assembly exists?

Upvotes: 2

Hans Olsson
Hans Olsson

Reputation: 55001

Does it have any dependencies? If so, you should load them first.

Upvotes: 1

Related Questions