WritePrivateProfileString() private method

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