参见英文答案 >
Detect IE version from a WinForms application5个
我正在使用C#在.NET框架3.5中开发一个winform应用程序.
我正在使用C#在.NET框架3.5中开发一个winform应用程序.
在应用程序中,我需要显示IE版本号,安装在运行的机器上.我该怎么做,有人可以告诉我吗?
解决方法
您可以从注册表读取版本:
var ieVersion = Registry.LocalMachine.OpenSubKey(@"Software\Microsoft\Internet Explorer").GetValue("Version");