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.3572.0 (4.8.3572.0)
Syntax
C#
public Assembly? LoadAssemblyFromPartialName(
	string assemblyString,
	string hintPath
)

Parameters

assemblyString  String
The partial assembly string.
hintPath  String
A directory in which to search for the assembly. If the directory exists, it is searched first, followed by the directory of the entry assembly.

Return Value

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