博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#编辑EXE使用的appSettings节点的Config文件
阅读量:6254 次
发布时间:2019-06-22

本文共 927 字,大约阅读时间需要 3 分钟。

 

 

///         /// 保存配置文件的设定        ///         ///         ///         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

你可能感兴趣的文章
我的友情链接
查看>>
如何更好地对齐分区??
查看>>
使用Python从rds上下载mysql备份文件
查看>>
react native组件的创建
查看>>
批量删除文件
查看>>
Linux网络管理
查看>>
iOS JSPatch 热修复使用
查看>>
某二级行机房搬迁
查看>>
基于MVC+EasyUI的Web开发框架经验总结(4)--使用图表控件Highcharts
查看>>
vs2015 xamarin 添加智能感知
查看>>
call to member function bind_param() on boolean...........
查看>>
刘启成_补充知识:awk:报告生成器
查看>>
Linux LVM逻辑卷配置过程详解
查看>>
【技术分享】VSAN如何处理磁盘或主机故障
查看>>
OS快捷键
查看>>
linux内核中Kconfig和Makefile 详解
查看>>
ASP.NET 使用List<T>.Remove 不生效
查看>>
Nginx的第三方模块ngx-fancyindex安装
查看>>
TCP有限状态机
查看>>
XenServer常用Debug问题的命令介绍
查看>>