Click or drag to resize

ToolboxFindAssembly Method

https://www.emgu.com/wiki/index.php/Emgu_TF
Searches for and returns the first loaded assembly in the current AppDomain with the specified assembly name.

Namespace:  Emgu.TF.Util
Assembly:  Emgu.TF (in Emgu.TF.dll) Version: 2.16.1.1620+d2904aaafaa66327b642f4fbd5e3c7133dd331e0
Syntax
public static Assembly FindAssembly(
	string assembleName
)

Parameters

assembleName
Type: SystemString
The name of the assembly to find.

Return Value

Type: Assembly
The loaded assembly with the specified name if found; otherwise, null.
Remarks
This method will catch and log any exceptions that occur during the search, returning null if an exception is caught.
See Also