Mega Code Archive

 
Categories / C# / Reflection
 

Set AssemblyTitle, AssemblyDescription, AssemblyConfiguration, AssemblyCompany, AssemblyProduct

using System.Reflection; using System.Windows.Forms;     [assembly: AssemblyTitle("title")] [assembly: AssemblyDescription("code.")] [assembly: AssemblyConfiguration("Retail")] [assembly: AssemblyCompany("Inc.")] [assembly: AssemblyProduct("C#")] [assembly: AssemblyCopyright("Inc.")] [assembly: AssemblyVersion("1.0.*")]     public class SimpleHelloWorld : Form {     public static void Main()     {         Application.Run(new SimpleHelloWorld());     }         public SimpleHelloWorld()     {         Text = "Hello, WindowsForms!";     } }