一、獲取程序集版本
程序代碼
代碼如下:
label版本.Text = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();
二、獲取文件版本
程序代碼
代碼如下:
using System.Diagnostics;
FileVersionInfo myFileVersion = FileVersionInfo.GetVersionInfo (System.Windows.Forms.Application.ExecutablePath);
label版本.Text = myFileVersion.FileVersion;