如何从 C++ 获取文件版本信息 C# 中的 exe 吗?
我需要从 C# 程序中最初用 C++ 编写的 exe 文件获取文件版本信息。
使用 Assembly.LoadFile(fullpath).GetName().Version 会导致 BadImageFormatException。
有人可以帮忙吗?
干杯,
丹
I need to get the File version information from an exe file originally written in C++ from a C# program.
Using Assembly.LoadFile(fullpath).GetName().Version results in a BadImageFormatException.
Can anyone help?
Cheers,
Dan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加一个
using System.Diagnostics
,然后:然后查看
info
的各种属性:等等
Add a
using System.Diagnostics
, and then:Then look at the various properties of
info
:etc