コード例 #1
0
 public byte[] IniReadValues(string section, string key)
 {
     byte[] array = new byte[255];
     INIFile.GetPrivateProfileString(section, key, "", array, 255, this.path);
     return(array);
 }
コード例 #2
0
 public void IniWriteValue(string Section, string Key, string Value)
 {
     INIFile.WritePrivateProfileString(Section, Key, Value, this.path);
 }