Accessing attributes from AssemblyInfo on CF

Tech-Archive recommends: Fix windows errors by optimizing your registry

From: Waldek (waldemarg_at_autograf.pl)
Date: 02/18/05


Date: Fri, 18 Feb 2005 23:50:34 +0100

Is possible to access attributes from AssemblyInfo file like
"AssemblyTitle","AssemblyDescription"
etc.

Code below causes NotSupportedException :
Dim att As System.Reflection.AssemblyTitleAttribute

att =
System.Reflection.AssemblyTitleAttribute.GetCustomAttribute(System.Reflectio
n.Assembly.GetExecutingAssembly(),
GetType(System.Reflection.AssemblyTitleAttribute))

MsgBox(att.Title)