public static string IniReadValue(string INIPath, string Section, string Key) { StringBuilder stringBuilder = new StringBuilder(500); INIClass.GetPrivateProfileString(Section, Key, "", stringBuilder, 500, INIPath); return stringBuilder.ToString(); }
public static void IniWriteValue(string INIPath, string Section, string Key, string Value) { INIClass.WritePrivateProfileString(Section, Key, Value, INIPath); }