如何通过代码将自定义configSections添加到app.config文件中
本文关键字:app config 文件 添加 configSections 何通过 代码 自定义 | 更新日期: 2023-09-27 17:50:20
如何通过代码将节添加到app.config文件?
在我的配置文件中类似这样的东西,但它可以有多个部分,而不是通过appSettings,因为我想向它添加多个值。
<configSections>
<!-- CUSTOM CONFIG SECTIONS BELOW -->
<section name="EmailSection" type="Email.EmailSection, Email" />
</configSections>
<EmailSection>
<Emails>
<email id="HOST" name="mail.somedomain.com" />
<email id="PORT" name="25" />
<email id="TOADDRESS" name="" />
<email id="FROMADDRESS" name="dev@somedomain.com" />
</Emails>
</EmailSection>
我想通过我的代码中的导入方法做到这一点,这样我就可以选择一个xml文件,然后将部分添加到我的app.config。
对
艾丹
成功通过了这个。
我必须循环遍历我的项并将它们添加进去,但它做了我需要的。
谢谢你的建议。
艾丹