Need a clue with Configuration Sections
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Hi folks, I could please need some help with custom Configuration Sections: Let me first describe what I want to acheive: I want to have a Configuration section which consists of several items (I already managed that, it's working fine) Now each of these items can should have another list of subsitems. The resulting config file should look like this: + section - parentitem - childitem - childitem ... - parentitem - childitem ... As I said I already managed add the section and create the "parent items". Now I tried using a ConfigurationElementCollection derived class for the collection of "childitems" but they won't show up. Does anyone have an idea how I can acheive my goal? Many thanks in advance. Stefan