Assembly.Load from byte[]



Hi,

Is it possible to load an assembly from a byte[] and make the framework
use this assembly instead of trying to locate them on disk..

Example :
My projet has a reference to the ESI.Framework assembly.

Assembly.Load(EmbeddedData.ESI.Framework);
ESI.Framework.Console c = new ESI.Framework.Console();

How can I bind the explicit reference that I added to my projet, to the
assembly loaded from my byte[]...

.