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

Comments() public static méthode

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