获取dll版本信息

var fileVersionInfo = FileVersionInfo.GetVersionInfo(Server.MapPath("XXX.dll"));
DllVersion = string.Format("{0}.{1}", fileVersionInfo.FileMajorPart, fileVersionInfo.FileMinorPart);// 主版本号和次版本号(x.x)
_Version = fileVersionInfo.ProductVersion;// 版本号(x.x.x.x)

转载于:https://www.cnblogs.com/zhftyy/p/5168175.html

你可能感兴趣的:(获取dll版本信息)