• Top Posts

    How can you get the assembly version in C#?



    •  By Using following example we can know the what is the version we are using .


      static void Main()  
         {  
          Version version = Assembly.GetEntryAssembly().GetName().Version;  
           Console.WriteLine(version);  
           Console.ReadLine();  
         }  
    

    No comments

    Post Top Ad

    ad728

    Post Bottom Ad

    ad728