BEGroup.Utility.IniFile.RemoveSection C# (CSharp) Method

RemoveSection() public method

Removes the specified section and all its key/value pairs, if the section does not exist, nothing will be done.
public RemoveSection ( string section ) : void
section string Section name
return void
        public void RemoveSection(string section)
        {
            if (!ContainsSection(section)) return;
            _content.Remove(section);
        }