检测.NET中的COMCTL32版本
如何确定 C# .NET 应用程序正在使用哪个版本的 comctl32.dll? 我看到的这个问题的答案通常涉及从 Windows\System 中的物理文件获取版本信息,但由于并行考虑,这不一定是实际使用的版本。
How do I determine which version of comctl32.dll is being used by a C# .NET application? The answers I've seen to this question usually involve getting version info from the physical file in Windows\System, but that isn't necessarily the version that's actually in use due to side-by-side considerations.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
System.Diagnostics.Process.GetCurrentProcess.Modules
为您提供当前进程中加载的所有模块。 这还包括非托管 win32 dll。 您可以搜索集合并检查加载版本的FileVersionInfo
属性。System.Diagnostics.Process.GetCurrentProcess.Modules
gives you all the modules loaded in the current process. This also includes the unmanaged win32 dlls. You can search through the collection and check theFileVersionInfo
property for the loaded version.