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
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