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

CreateSection() public method

Creates an empty section to this INI file, if the section already exists, nothing will be done.
public CreateSection ( string section ) : void
section string Section name
return void
        public void CreateSection(string section)
        {
            if (ContainsSection(section)) return;
            _content.Add(section, new Dictionary<string, string>());
        }