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