NFe.Components.IniFile.KeyExists C# (CSharp) Method

KeyExists() public method

public KeyExists ( string Key, string Section = null ) : bool
Key string
Section string
return bool
        public bool KeyExists(string Key, string Section = null)
        {
            return Read(Key, Section).Length > 0;
        }
    }