コード例 #1
0
 public void IniWriteValue(string Section, string Key, string Value, string DefValue)
 {
     Value = (Value == null ? "" : Value);
     if ((Value == "" || Value == null) && DefValue != "" && DefValue != null)
     {
         Value = DefValue;
     }
     IniClass.WritePrivateProfileString(Section, Key, Value, this.path);
 }
コード例 #2
0
 public void IniWriteValue(string Section, string Key, string Value)
 {
     IniClass.WritePrivateProfileString(Section, Key, Value, this.path);
 }