Skip to content

Commit

Permalink
Documentation update.
Browse files Browse the repository at this point in the history
  • Loading branch information
emgucv committed May 15, 2024
1 parent 1c2dc6d commit 1e35551
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Emgu.TF.Util/Toolbox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,13 @@ public static String GetDllDirectory()
*/

/// <summary>
/// Find the loaded assembly with the specific assembly name
/// Searches for and returns the first loaded assembly in the current AppDomain with the specified assembly name.
/// </summary>
/// <param name="assembleName"></param>
/// <returns></returns>
/// <param name="assembleName">The name of the assembly to find.</param>
/// <returns>The loaded assembly with the specified name if found; otherwise, null.</returns>
/// <remarks>
/// This method will catch and log any exceptions that occur during the search, returning null if an exception is caught.
/// </remarks>
public static System.Reflection.Assembly FindAssembly(String assembleName)
{
try
Expand Down

0 comments on commit 1e35551

Please sign in to comment.