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
Syntaxpublic static Assembly FindAssembly(
string assembleName
)
Public Shared Function FindAssembly (
assembleName As String
) As Assembly
public:
static Assembly^ FindAssembly(
String^ assembleName
)
static member FindAssembly :
assembleName : string -> Assembly
Parameters
- assembleName
- Type: SystemString
The name of the assembly to find.
Return Value
Type:
AssemblyThe 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