私は、.NET 2.0本を読み、アプリケーションのアセンブリの説明を取得します。このサンプルコードに出くわした:C#でアセンブリ記述を取得する簡略化された方法は?
static void Main(string[] args)
{
Assembly assembly = Assembly.GetExecutingAssembly();
object[] attributes =
assembly.GetCustomAttributes(typeof(AssemblyDescriptionAttribute), false);
if (attributes.Length > 0)
{
AssemblyDescriptionAttribute descriptionAttribute =
(AssemblyDescriptionAttribute)attributes[0];
Console.WriteLine(descriptionAttribute.Description);
}
Console.ReadKey();
}
それは単に組み立ての説明を取得するためにコードのかなり多くだと私はかどうかを知りたいですLINQまたはラムダ式を使用して.NET 3.5以降でこれを行う簡単な方法がありますか?
...シンプルな1つのライナーだ私は、このコードは '()'のための –