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

ContainsKey() public method

Determines whether this INI file contains the specified key in the specified section.
public ContainsKey ( string section, string key ) : bool
section string Section name
key string Key name
return bool
        public bool ContainsKey(string section, string key)
        {
            if (!ContainsSection(section)) return false;
            return _content[section].ContainsKey(key);
        }