Click or drag to resize

AssemblyLoaderServiceLoadAssemblyFromPartialName Method

Loads an assembly, given only the partial name of the assembly, e.g. 'AltaxoCore'. If the assembly is already loaded into the application domain, the already loaded assembly is returned.

Namespace: Altaxo.AddInItems
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public Assembly? LoadAssemblyFromPartialName(
	string assemblyString,
	string hintPath
)

Parameters

assemblyString  String
The partial assembly string.
hintPath  String
A directory where to search for the assembly. Can be null. If not null, first this directory, and then the directory of the entry assembly is searched for the assembly.

Return Value

Assembly
The assembly that was loaded, or null if the assembly was not found.
See Also