Beispiel #1
0
 public byte[] IniReadValues(string section, string key)
 {
     byte[] retVal = new byte[(int)byte.MaxValue];
     INIFile.GetPrivateProfileString(section, key, "", retVal, (int)byte.MaxValue, this.path);
     return(retVal);
 }
Beispiel #2
0
 public void IniWriteValue(string Section, string Key, string Value)
 {
     INIFile.WritePrivateProfileString(Section, Key, Value, this.path);
 }