Add information for AssemblyCulture and AssemblyVersion : Assembly Properties : Assembly C# Examples


C# Examples » Assembly » Assembly Properties »

 

Add information for AssemblyCulture and AssemblyVersion









    
using  System;
using  System.Reflection;

[assembly:AssemblyCulture("")]
[assembly:AssemblyVersion("1.1.0.5")]


class  MainClass
{
        public  static  void  Main()  
        {
                Console.WriteLine("Welcome");
        }
}
    
   
  
   



Output

Welcome


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Assembly
» Assembly Properties