Mega Code Archive

 
Categories / C# / Reflection
 

Use Assembly to indicate the version and culture

using System; using System.Reflection; [assembly:AssemblyCulture("")] [assembly:AssemblyVersion("1.1.0.5")] class Test{    public static void Main() {        Console.WriteLine("www.rntsoft.com");    } }