> this method on MSDN:
>
[quoted text clipped - 3 lines]
>
> what is COFF-based image ? and how to use with it?
COFF based images is the format windows executables, including DLLs are in.
You should be able to just read the dll into memory and pass the byte array.
mtczx232@yahoo.com - 23 Apr 2006 07:43 GMT
thank you Daniel O'Connell.
I wonder if have some Books that Explain with detail All .NET Framework
library?
the MSDN is definitely not enough resource.
codeartist - 09 Oct 2006 20:00 GMT
Daniel,
I tried to load an assembly from a byte array stored in a DB using Assembly.
Load(myfile()) and I got a BadImageFormatException
I think a regular byte array can not be used, it should be converted to some
other format
>> this method on MSDN:
>>
[quoted text clipped - 4 lines]
>COFF based images is the format windows executables, including DLLs are in.
>You should be able to just read the dll into memory and pass the byte array.