c#获取程序版本号

Content.Text = "程序集版本:" + System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString() +"\n";

读取的是AssemblyInfo.cs文件的[assembly: AssemblyVersion("1.0.1.11")]。
Content.Text += "文件版本:" + Application.ProductVersion.ToString() +"\n";
Content.Text += "部署版本:" + System.Deployment.Application.ApplicationDeployment.CurrentDeployment.CurrentVersion.ToString();

posted @ 2019-01-03 17:44  net-sky  阅读(8203)  评论(0编辑  收藏  举报