Hi can any one suggest the way to write the custom configuration class for writing the configuration as follows in my app.config file.
<configuration>
<configSections>
<section name="oneP2CReportConfiguration" type="MyDll.Config.CustomConfig.OnePage2ColReportConfigInfo, MyDll.Config"/>
</configSections>
<oneP2CReportConfiguration>
<countryGroup>
<country name="India">
<country name="Japan">
</countryGroup>
<countryGroup>
<country name="China">
<country name="Nepal">
</countryGroup>
</oneP2CReportConfiguration>
</configuration>
Finally I figured it out how to write the custom configuration file.