I know I can have 1 parent element and 1 child element in my own custom app.config section like so:
<sectionGroup开发者_JAVA技巧>
<section>
<element />
</section>
</sectionGroup>
My question is, can I have one or more levels of nesting more than this? Like so:
<biggestSectionGroup>
<biggerSectionGroup>
<sectionGroup>
<section>
<element />
</section>
</sectionGroup>
</biggerSectionGroup>
</biggestSectionGroup>
Yes you can.
There is a series of (slightly old but still very good) articles (part 1, part 2 & part 3) on CodeProject that describe everything you could want to know about config files. They describe in detail how to attain what you describe.
精彩评论