Mega Code Archive

 
Categories / C# / Reflection
 

Assembly Title

using System; using System.Collections.Generic; using System.Text; using System.Reflection; public class Utility {     public static string AssemblyTitle()     {         AssemblyTitleAttribute title = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyTitleAttribute), false)[0] as AssemblyTitleAttribute;         return title.Title;     } }