Assembly Copyright
using System; using System.Collections.Generic; using System.Text; using System.Reflection; public class Utility { public static string AssemblyCopyright() { AssemblyCopyrightAttribute copyright = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false)[0] as AssemblyCopyrightAttribute; return copyright.Copyright; } }