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