BEGroup.Utility.IniFile.ContainsKey C# (CSharp) Méthode

ContainsKey() public méthode

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
Résultat bool
        public bool ContainsKey(string section, string key)
        {
            if (!ContainsSection(section)) return false;
            return _content[section].ContainsKey(key);
        }