WritePrivateProfileString() private méthode

private WritePrivateProfileString ( string section, string key, string val, string filePath ) : long
section string
key string
val string
filePath string
Résultat long
Exemple #1
0
 public void WriteValue(String Section, String Key, String Value)
 {
     IniFile.WritePrivateProfileString(Section, Key, Value, this.path);
 }
Exemple #2
0
 public void IniWriteValue(string Section, string Key, string Value)
 {
     IniFile.WritePrivateProfileString(Section, Key, Value, path);
 }