Load Method
MSDN Home
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
.NET Framework Class Library
System.Reflection Namespace
Assembly Class
Assembly Methods
Load Method
Load Method (Byte[])
Load Method (AssemblyName)
Load Method (String)
Load Method (Byte[], Byte[])
Load Method (AssemblyName, Evi ...
Load Method (String, Evidence)
Load Method (Byte[], Byte[], E ...
Assembly Methods
_Assembly.GetType Method
CreateInstance Method
CreateQualifiedName Method
Equals Method
GetAssembly Method
GetCallingAssembly Method
GetCustomAttributes Method
GetEntryAssembly Method
GetExecutingAssembly Method
GetExportedTypes Method
GetFile Method
GetFiles Method
GetHashCode Method
GetLoadedModules Method
GetManifestResourceInfo Method
GetManifestResourceNames Metho ...
GetManifestResourceStream Meth ...
GetModule Method
GetModules Method
GetName Method
GetObjectData Method
GetReferencedAssemblies Method
GetSatelliteAssembly Method
GetType Method
GetTypes Method
IsDefined Method
Load Method
LoadFile Method
LoadFrom Method
LoadModule Method
LoadWithPartialName Method
ReflectionOnlyLoad Method
ReflectionOnlyLoadFrom Method
ToString Method
Switch View :
Classic
Lightweight Beta
ScriptFree
Feedback
.NET Framework Class Library
Assembly
.
.
::
.
Load Method
Loads an assembly.
Overload List
Name
Description
Load(
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.
Load(AssemblyName)
Loads an assembly given its
AssemblyName
.
Load(String)
Loads an assembly given the long form of its name.
Load(
array<
Byte
>
[]
()
[]
,
array<
Byte
>
[]
()
[]
)
Loads the assembly with a common object file format (COFF)-based image containing an emitted assembly.
Load(AssemblyName, Evidence)
Loads an assembly given its
AssemblyName
. The assembly is loaded into the domain of the caller using the supplied evidence.
Load(String, Evidence)
Loads an assembly given its display name, loading the assembly into the domain of the caller using the supplied evidence.
Load(
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
Assembly Class
Assembly Members
System.Reflection Namespace
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