c# 配置文件的读写

一、配置文件 app.config

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <appSettings>
        <add key="String1" value="value1" />
        <add key="String2" value="value2+" />
        <add key="String1" value="value3" />        
    </appSettings>
    <startup>
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
    </startup>
</configuration>

使用<appSettings></appSettings>标签增加节点,

使用<add key="String1" value="value1" />增加键值对

<startup>

   <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>

</startup>

设置.NET框架
二、配置文件读写函数
 /// <summary>
 /// 读数配置参数值
 /// </summary>
 /// <param name="key">参数名称</param>
 /// <returns>参数的值</returns>
 public static string ReadConfig(string key)
{
   List<string> list = new List<string>();
   ExeConfigurationFileMap file = new ExeConfigurationFileMap();
   file.ExeConfigFilename = System.Windows.Forms.Application.ExecutablePath + ".config";
   Configuration config = System.Configuration.ConfigurationManager.OpenMappedExeConfiguration(file, ConfigurationUserLevel.None);
   var myApp = (AppSettingsSection)config.GetSection("appSettings");
   return myApp.Settings[key].Value;

}
/// <summary>
/// 写改配置参数中指定参数的值
/// </summary>
/// <param name="key">参数名称</param>
/// <param name="value">参数修改的值</param>
public static void WriteConfig(string key, string value)
{
   ExeConfigurationFileMap file = new ExeConfigurationFileMap();
   file.ExeConfigFilename = System.Windows.Forms.Application.ExecutablePath + ".config";
   Configuration config = System.Configuration.ConfigurationManager.OpenMappedExeConfiguration(file, ConfigurationUserLevel.None);
   var myApp = (AppSettingsSection)config.GetSection("appSettings");
   myApp.Settings[key].Value = value;
   config.Save();
}

 

 

 
 

转载于:https://www.cnblogs.com/braceli/p/5432880.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值