Possible Duplicate:
How to create custom config section in app.config?
I am struggling to read custom sections from my app.config file. Could some one help me in this. I have a nested custom section in app.config up to 6 levels.
My App.config
<configuration>
<Parent>
<mySystem>
<mySystemContainers>
<mySystemContainer name="one" >
<mySystems>
<clear/>
<System Name="name" GroupName="Group1"/>
<System Name="name2" GroupName="Group1"/>
</mySystems>
</mySystemContainer>
</mySystem>
</Parent>
</configuration>