BooLangService.AssemblyHelper.FindInCurrentAppDomainOrLoad C# (CSharp) Méthode

FindInCurrentAppDomainOrLoad() public static méthode

public static FindInCurrentAppDomainOrLoad ( string path ) : Assembly
path string
Résultat System.Reflection.Assembly
        public static Assembly FindInCurrentAppDomainOrLoad(string path)
        {
            return FindAssemblyInCurrentAppDomain(path) ?? Assembly.LoadFrom(path);
        }