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);
        }