zoukankan      html  css  js  c++  java
  • [C#]windows注册表操作类

    using System;
    using System.Collections.Generic;
    using System.Text;
    using Microsoft.Win32;
     
    namespace SafetyPCClient.Function
    {
        public class RegisterOperate
        {
             /// <summary>
            /// 写入注册表
            /// </summary>
            /// <param name="strName"></param>
            public static void SetRegEditData(string strName, string strValue)
            {
                try
                {
                    RegistryKey hklm = Registry.LocalMachine;
                    RegistryKey software = hklm.OpenSubKey("SOFTWARE", true);
                    RegistryKey aimdir = software.CreateSubKey("MySoftware");
                    aimdir.SetValue(strName, strValue);
                }
                catch (Exception ex)
                {
                    Console.WriteLine(ex.Message);
                }
     
            }
     
            /**/
            /// <summary>
            /// 修改注册表项
            /// </summary>
            /// <param name="strName"></param>
            /// <param name="strValue"></param>
            public static void ModifyRegEditData(string strName, string strValue)
            {
                try
                {
                    RegistryKey hklm = Registry.LocalMachine;
                    RegistryKey software = hklm.OpenSubKey("SOFTWARE\\MySoftware", true);
                    software.SetValue(strName, strValue);
                }
                catch (Exception ex)
                {
                    Console.WriteLine(ex.Message);
                }
            }
     
            /**/
            /// <summary>
            /// 判断指定注册表项是否存在
            /// </summary>
            /// <param name="strName"></param>
            /// <returns></returns>
            public static bool IsExist(string strName)
            {
                try
                {
                    bool exit = false;
                    string[] subkeyNames;
                    RegistryKey hkml = Registry.LocalMachine;
                    RegistryKey software = hkml.OpenSubKey("SOFTWARE", true);
                    RegistryKey aimdir = software.OpenSubKey("MySoftware", true);
                    subkeyNames = aimdir.GetValueNames();
                    foreach (string keyName in subkeyNames)
                    {
                        if (keyName == strName)
                        {
                            exit = true;
                            return exit;
                        }
                    }
                    return exit;
                }
                catch (Exception ex)
                {
                    Console.WriteLine(ex.Message);
                    return false;
                }
            }
     
        }
    }
  • 相关阅读:
    sqlserver中的锁与事务
    策略模式
    异步编程
    并行聚合操作
    EF中的自动追踪与代理
    C#6.0语法糖
    EF中使用SqlQuery进行参数化查询时抛出异常
    乐观并发
    为什么那么多公司不用 .NET
    sqlserver 更改跟踪相关知识
  • 原文地址:https://www.cnblogs.com/Hsppl/p/2597825.html
Copyright © 2011-2022 走看看