阅读装配属性
使用 .NET 的丰富反射 API,你可以访问程序集的元数据。例如,你可以使用以下代码获取 this
程序集的 title 属性
using System.Linq;
using System.Reflection;
...
Assembly assembly = typeof(this).Assembly;
var titleAttribute = assembly.GetCustomAttributes<AssemblyTitleAttribute>().FirstOrDefault();
Console.WriteLine($"This assembly title is {titleAttribute?.Title}");