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

RemoveKey() public method

Removes the specified key in the specified section, if the key and/or section does not exist, nothing will be done.
public RemoveKey ( string section, string key ) : void
section string Section name
key string Key name
return void
        public void RemoveKey(string section, string key)
        {
            if (!ContainsKey(section, key)) return;
            _content[section].Remove(key);
        }