自定义配置部分 - 多个集合

时间:2012-10-16 22:55:50

标签: c# .net web-config app-config system.configuration

  

可能重复:
  How to Create a Configuration Section That Contains a Collection of Collections?

我想在web.config

中创建类似此自定义部分的内容
<MyCustomSection>
     <Collection name="test">
        <item name="foo" />
        <item name="bar">
     </Collection>
     <Collection name="test2">
        <item name="bob" />
        <item name="joe" />
     </Collection>
     ...
</MyCustomSection>

我看过很多教程都展示了如何创建一个Collection(比如这个:http://dotnetslackers.com/articles/customconfiguration/Custom_Configuration_Collections.aspx)但没有显示如何创建一个集合集合。这甚至可能吗?

0 个答案:

没有答案