可能重复:
寻找 C# 注册表类
在注册表位置上写入的方式
我正在尝试用 C# 编写一个程序,通过做几件事来提高 Windows 的速度(清除临时文件夹、预取文件夹......等)
但要使程序强大,我需要编辑注册表值.. 我该怎么做?
可能重复:
寻找 C# 注册表类
在注册表位置上写入的方式
我正在尝试用 C# 编写一个程序,通过做几件事来提高 Windows 的速度(清除临时文件夹、预取文件夹......等)
但要使程序强大,我需要编辑注册表值.. 我该怎么做?
你可能需要阅读这篇文章
public string Read(string KeyName)
{
// Opening the registry key
RegistryKey rk = baseRegistryKey ;
// Open a subKey as read-only
RegistryKey sk1 = rk.OpenSubKey(subKey);
// If the RegistrySubKey doesn't exist -> (null)
if ( sk1 == null )
{
return null;
}
else
{
try
{
// If the RegistryKey exists I get its value
// or null is returned.
return (string)sk1.GetValue(KeyName.ToUpper());
}
catch (Exception e)
{
// AAAAAAAAAAARGH, an error!
ShowErrorMessage(e, "Reading registry " + KeyName.ToUpper());
return null;
}
}
}