public byte[] IniReadValues(string section, string key) { byte[] array = new byte[255]; INIFile.GetPrivateProfileString(section, key, "", array, 255, this.path); return(array); }
public void IniWriteValue(string Section, string Key, string Value) { INIFile.WritePrivateProfileString(Section, Key, Value, this.path); }