Beispiel #1
0
		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();
		}
Beispiel #2
0
		public static void IniWriteValue(string INIPath, string Section, string Key, string Value)
		{
			INIClass.WritePrivateProfileString(Section, Key, Value, INIPath);
		}