美文网首页
C#读取windows注册表键值的代码

C#读取windows注册表键值的代码

作者: 简简单单咦 | 来源:发表于2021-10-23 14:19 被阅读0次

    将开发过程经常用的代码片段珍藏起来,如下代码段是关于C#读取windows注册表键值的代码。

    using Microsoft.Win32;

    读取注册表代码

    RegistryKey masterKey = Registry.LocalMachine.CreateSubKey

      ("SOFTWARE\Test\Preferences");

    if (masterKey == null)

    {

      Console.WriteLine ("Null Masterkey!");

    }

    else

    {

      Console.WriteLine ("MyKey = {0}", masterKey.GetValue ("MyKey"));

    }

    masterKey.Close();

    相关文章

      网友评论

          本文标题:C#读取windows注册表键值的代码

          本文链接:https://www.haomeiwen.com/subject/kxgkaltx.html