1using System; 2using System.Reflection; 3 4Console.Write( 5 ( 6 (AssemblyCopyrightAttribute)Assembly 7 .GetExecutingAssembly() 8 .GetCustomAttributes(typeof(AssemblyCopyrightAttribute), true)[0] 9 ).Copyright 10);