public string ReadValue(string section, string key) { StringBuilder stringBuilder = new StringBuilder(255); ManageIni.GetPrivateProfileString(section, key, "", stringBuilder, 255, this.sPath); return(stringBuilder.ToString()); }
public void WritValue(string section, string key, string value) { ManageIni.WritePrivateProfileString(section, key, value, this.sPath); }