C#编辑EXE使用的appSettings节点的Config文件

 

 

/// 
        /// 保存配置文件的设定
        /// 
        /// 
        /// 
        public static void SaveAppConfig(string Key,string Value)
        {
            string strFilePath = System.Windows.Forms.Application.ExecutablePath;
            Configuration objConfig = ConfigurationManager.OpenExeConfiguration(strFilePath);
            bool bolExist = false;
            foreach (string Item in objConfig.AppSettings.Settings.AllKeys)
            {
                if (Item == Key)
                {
                    bolExist = true;
                    break;
                }
            }
            if (bolExist)
            {
                objConfig.AppSettings.Settings.Remove(Key);
            }
            objConfig.AppSettings.Settings.Add(Key,Value);
            objConfig.Save(ConfigurationSaveMode.Modified);
            ConfigurationManager.RefreshSection("appSettings");
        }

  

转载于:https://www.cnblogs.com/derekhan/p/10111864.html

你可能感兴趣的:(C#编辑EXE使用的appSettings节点的Config文件)