如何使用c#修改/更新app.config的自定义配置部分

时间:2015-08-11 06:11:52

标签: c# app-config

我正在尝试在app.config中为我的Windows应用程序保存一些配置。 我在谷歌搜索了解决方案但没有与此相关的任何内容。我的要求是我想使用我的Windows应用程序在app.config中保存/更新配置。

我的架构将是这样的:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <section name="customAppSettings1" type="System.Configuration.NameValueSectionHandler"/>
    <section name="customAppSettings2" type="System.Configuration.NameValueSectionHandler"/>    
  </configSections>
  <customAppSettings1>
    <add key="FirstKey" value="1" />
    <add key="SecondKey" value="2" />
  </customAppSettings1>
  <customAppSettings2>
    <add key="FirstKey" value="1" />
    <add key="SecondKey" value="2" />
  </customAppSettings2>
</configuration>

1 个答案:

答案 0 :(得分:0)

此代码提供更改的自定义值。但不保存物理文件。你的问题有点进展。

var xmlDoc = new XmlDocument();
xmlDoc.Load(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile);
xmlDoc.SelectSingleNode("//applicationSettings/MyApp_Application.Properties.Settings/setting/value").InnerText = "server=127.0.0.1;uid=root;pwd=root;database=" + comboBox1.SelectedItem.ToString();

xmlDoc.Save(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile);

ConfigurationManager.RefreshSection("applicationSettings/MyApp_Application.Properties.Settings/setting");