NFe.Components.IniFile.KeyExists C# (CSharp) Метод

KeyExists() публичный Метод

public KeyExists ( string Key, string Section = null ) : bool
Key string
Section string
Результат bool
        public bool KeyExists(string Key, string Section = null)
        {
            return Read(Key, Section).Length > 0;
        }
    }