如何从 Visual Basic 读取 C# DLL 的 AssemblyFileVersion?
我正在从 Visual Basic 6.0 子例程调用 C# 对象(不要问)。 如何从 Visual Basic 获取 AssemblyFileVersion?
I am invoking a C# object from a Visual Basic 6.0 sub routine (don't ask).
How do I get the AssemblyFileVersion from Visual Basic?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您尝试从 VB6 执行此操作,那么您将需要类似以下内容:
http ://www.visualbasic.happycodings.com/Files_Directories_Drives/code30.html
使用 Windows API 应该可以满足您的需要。
编辑:
不知道这是否也有帮助:
http://support.microsoft.com/kb/ 186118
展示如何使用 FileSystemObject,这可能是获取文件信息的更简单方法。
If you're trying to do this from VB6, then you will need something like this:
http://www.visualbasic.happycodings.com/Files_Directories_Drives/code30.html
Using the Windows API should give you what you need.
EDIT:
Don't know if this might also help:
http://support.microsoft.com/kb/186118
Shows how to use the FileSystemObject which could be an easier way to get file information.