管理

C# 获取程序集版本、文件版本

Posted on 2015-06-29 12:10  lzhdim  阅读(414)  评论(0编辑  收藏  举报

一、获取程序集版本 
程序代码 

复制代码代码如下:

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; 
 
Copyright © 2000-2022 Lzhdim Technology Software All Rights Reserved