我有一个.Net项目,我们访问用C ++编写的COM对象。
在我的“关于”框中(在.Net部分中)我希望显示已使用的COM对象的版本。
我目前有关于COM对象的版本信息(在Windows资源管理器 - >属性 - >版本中可见)。
如何从C#代码中读取版本(最好是版权等)?
感谢您提供任何意见,
丹麦安德斯
答案 0 :(得分:1)
FileVersionInfo fileVersion = FileVersionInfo.GetVersionInfo(path);
string version = string.Format("Version {0}",fileVersion.FileVersion);