如何在自己的文件中使用自定义ConfigurationSections?

时间:2015-01-15 03:32:28

标签: .net .net-4.5

过去,我在app.config文件中创建了自定义ConfigurationSections。如何将ConfigurationSection移动到它自己的文件,与我的应用程序的主配置文件无关?

1 个答案:

答案 0 :(得分:0)

在app.config文件中执行此操作

<configuration>
   <configSections>
        <section name="customSection" type="ABC" />
   </configSections>
<customSection configSource="custom.config"></customSection> //Your own file name is the configSource

创建另一个名为custom.config的文件。在该文件内:

   <customSection>
   //Your config here
   </customSection>