Good morning Bill
First of all, sorry for the big delay of our response. The delay is caused
by an issue in the MSDN managed newsgroup system, and we are working with
relevant teams to fix it. In future, if you see the delay again, please
directly send an email to (e-mail address removed). We will take action in no
time.
For this thread about ApplicationSettingsGroup, you can use the following
code to iterate through section groups:
Configuration config =
ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
// You can use config.SectionGroups to interate the section groups
ApplicationSettingsGroup appSettingsGroup =
config.GetSectionGroup("applicationSettings") as
ApplicationSettingsGroup;
if (appSettingsGroup != null)
{
for (int i = 0; i < appSettingsGroup.Sections.Count; i++)
{
ConfigurationSection section = appSettingsGroup.Sections;
}
}
If you have any questions or concerns, please feel free to tell me.