Ejemplo n.º 1
0
 private void NewSection()
 {
     var sectionName = _token.ToString();
     _token.Clear();
     _section = _configFile.FindConfigSection(sectionName);
     if (_section == null)
     {
         _section = new ConfigSection(sectionName, false);
         _configFile.ConfigSections.Add(_section);
     }
 }