ClrPlus.Core.Extensions.AssemblyExtensions.Company C# (CSharp) Méthode

Company() public static méthode

public static Company ( this assembly ) : string
assembly this
Résultat string
        public static string Company(this Assembly assembly)
        {
            try {
                return FileVersionInfo.GetVersionInfo(assembly.Location).CompanyName;
            } catch {
            }
            return string.Empty;
        }