BooLangService.AssemblyHelper.FindInCurrentAppDomainOrLoad C# (CSharp) Метод

FindInCurrentAppDomainOrLoad() публичный статический Метод

public static FindInCurrentAppDomainOrLoad ( string path ) : Assembly
path string
Результат System.Reflection.Assembly
        public static Assembly FindInCurrentAppDomainOrLoad(string path)
        {
            return FindAssemblyInCurrentAppDomain(path) ?? Assembly.LoadFrom(path);
        }