注册表读取和写入
Posted zhujie-com
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了注册表读取和写入相关的知识,希望对你有一定的参考价值。
static void Main(string[] args)
{
RegistryKey regkey = Registry.CurrentUser.OpenSubKey("cc");
if (regkey != null)
{
Console.WriteLine(regkey.GetValue("UserName").ToString());//读取注册表
regkey.Close();
}
Console.ReadKey();
}
//创建和写入注册表
private static void Test()
{
RegistryKey regkey = Registry.CurrentUser.CreateSubKey("cc");//"cc"要取一个特殊的字符串,防止与系统或其他程序写注册表名称相同,
??????????? regkey.SetValue("UserName", "cwx776534");
regkey.Close();
}
以上是关于注册表读取和写入的主要内容,如果未能解决你的问题,请参考以下文章