public static bool IsNet35Installed()
{
// 检查注册表项以确定是否安装了.NET Framework 3.5
const string subkey = @"SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.5";
try
{
using (RegistryKey key = Registry.LocalMachine.OpenSubKey(subkey))
{
if (key != null && key.GetValue("Install", 0) as int? == 1)
{
return true;
}
}
}
catch { }
return false;
}
浙公网安备 33010602011771号