WritePrivateProfileString() private method

private WritePrivateProfileString ( string section, string key, string val, string filePath ) : long
section string
key string
val string
filePath string
return long
Exemplo n.º 1
0
 public void WriteValue(String Section, String Key, String Value)
 {
     IniFile.WritePrivateProfileString(Section, Key, Value, this.path);
 }
Exemplo n.º 2
0
 public void IniWriteValue(string Section, string Key, string Value)
 {
     IniFile.WritePrivateProfileString(Section, Key, Value, path);
 }