ClrPlus.Core.Extensions.AssemblyExtensions.Comments C# (CSharp) Method

Comments() public static method

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