c#app.config嵌套部分

时间:2013-10-21 21:53:28

标签: c# app-config custom-sections

我想在app.config中有一个嵌套的自定义部分,如下所示,但是在C#中创建类对象时会遇到困难。

<customSettings>
    <brands>
       <brand name="abc">
          <mailbox server="" port="" />
          <mailbox server="" port="" />
       </brand>
       <brand name="xyz">
          <mailbox server="" port="" />
          <mailbox server="" port="" />
       </brand>
    </brands>
</customSettings>

请帮忙。

非常感谢提前。

1 个答案:

答案 0 :(得分:0)

Phil Haack拥有进行自定义配置的最佳分步说明。它对我和MSDN文档提供了帮助。 http://particular.net/articles/generic-host-sample