Click or drag to resize

ToolboxFindAssembly Method

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

Namespace:  Emgu.TF.Util
Assembly:  Emgu.TF.Lite (in Emgu.TF.Lite.dll) Version: 2.19.0.1709+574f567263f3c76bb77304b9eeb79ab6660ba101
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