关于c#:将自定义部分编写到app.config中

Writing custom sections into app.config

我想将一些自定义数据保存到应用程序配置文件中,我需要在app.config中创建一些自定义节。从app.config读取自定义数据很简单,但我无法将程序中的信息写入app.config。为了找到这个问题的解决方案,我创建了测试项目。

为了从自定义节app.config中读取数据,我使用了本文中的信息:

http://devlicio.us/blogs/derik-whittaker/archive/2006/11/13/app-config-and-custom-configuration-sections.aspx


你真的不应该给app.config写任何东西,因为如果你这样做了,那么你将把你的应用程序的使用限制在只允许管理员使用。最好将设置写入位于用户配置文件文件夹中的单独的.config文件,例如\\Application Data\


首先在你的CustomConfigSection中覆盖IsReadyOnly()返回false。

完成后,您应该能够这样做(这是针对ASP.NET的,但可能是可转移的):

1
2
3
4
5
System.Configuration.Configuration configFile = WebConfigurationManager.OpenWebConfiguration("~");
CustomConfigSection config = (CustomConfigSection)configFile.GetSection("Custom");
config.Tweak = 1;
config.Change ="foo";
configFile.Save();

试试看。