Tuesday, July 2, 2013

How to get exe version in window application in C#

Here is the simple line :
================


 string AppVersion = Application.ProductVersion;  //To get Product Version

 string AppVersion = Application.ProductName;    // To get Product Name.

No comments:

Post a Comment