閱讀裝配屬性
使用 .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}");