vs2010,新建程序读取注册表
//读注册表
RegistryKey regRead;
//读取LocalMachine主键里的Software子键下名为“Shui360”的子键
regRead = Registry.LocalMachine.OpenSubKey("Software\\Shui360", true);
if (regRead == null)//如果该子键不存在
{
MessageBox.Show("No Data!");
}
else
{
object obj = regRead.GetValue("SqlServer"); //读取“SqlServer”项的值
}
//关闭该对象
regRead.Close();
调试过程中,发现一直无法读取。未发现问题的根本原因。
后重新新增一个键值,发现写入的键值位置发生变化,新的键值写到了WOW6432Node节点下
通过网上查看,原来WOW6432Node节点下是专门用来放置X86程序的,把程序改为anycpu,读到了想要的值。
参考网上:
http://www.cnblogs.com/mingmingruyuedlut/archive/2011/01/20/1940371.html
时间: 2024-10-03 22:48:02