protected void IniWriteValue(string Section, string Key, string Value) { INI.WritePrivateProfileString(Section, Key, Value, this._path); }
public Section(string name, INI file) { this.Name = name; this.File = file; }