NSoft.NFramework.Nini.Ini.IniSection.Remove C# (CSharp) Method

Remove() public method

public Remove ( string key ) : void
key string
return void
        public void Remove(string key) {
            if(Contains(key)) {
                configList.Remove(key);
            }
        }
    }