.NET Framework Class Library
Assembly..::.Load Method

Loads an assembly.

Overload List

  NameDescription
Public methodStatic memberLoad(array<Byte>[]()[])Loads the assembly with a common object file format (COFF)-based image containing an emitted assembly. The assembly is loaded into the domain of the caller.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkLoad(AssemblyName)Loads an assembly given its AssemblyName.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkLoad(String)Loads an assembly given the long form of its name.
Public methodStatic memberLoad(array<Byte>[]()[], array<Byte>[]()[])Loads the assembly with a common object file format (COFF)-based image containing an emitted assembly.
Public methodStatic memberLoad(AssemblyName, Evidence)Loads an assembly given its AssemblyName. The assembly is loaded into the domain of the caller using the supplied evidence.
Public methodStatic memberLoad(String, Evidence)Loads an assembly given its display name, loading the assembly into the domain of the caller using the supplied evidence.
Public methodStatic memberLoad(array<Byte>[]()[], array<Byte>[]()[], Evidence)Loads the assembly with a common object file format (COFF)-based image containing an emitted assembly.
Top
See Also

Reference

Tags :


Community Content

LukeSkywalker
COFF
You should be able to read any compiled .NET assembly into memory and pass it in as they're all COFF.


"Windows NT uses a special format for the executable (image) files and object files. The format used in these files are referred to as Portable Executable (PE) or Common Object File Format (COFF) files. The name Portable Executable refers to the fact that executable files can run on more than one platform. This article describes in detail the internal features of PE/COFF file formats and its parameters."


http://support.microsoft.com/kb/121460

Assembly structure:

http://my.safaribooksonline.com/0735615470/IDAH05S
Tags : reflection

Page view tracker