[assembly: AssemblyTitle("CustAttrs1CS")]
[assembly: AssemblyDescription("GetCustomAttributes() Demo")]
[assembly: AssemblyCompany("ZZZ Projects")]
namespace ExtensionMethods
public static void Main()
Assembly assy = typeof(Program).Assembly;
AssemblyTitleAttribute attr = assy.GetAttribute<AssemblyTitleAttribute>();
Console.WriteLine(attr.Title);