BooLangService.AssemblyHelper.FindInCurrentAppDomainOrLoad C# (CSharp) Method

FindInCurrentAppDomainOrLoad() public static method

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