可能重复:
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)但没有显示如何创建一个集合集合。这甚至可能吗?