Ich habe eine Ini KLasse angelegt:
------------------------------------------------------------------------------------------------------------------
[DllImport("kernel32")]
private static extern long WritePrivateProfileString(string section,
string key, string val, string filePath);
[DllImport("kernel32")]
private static extern int GetPrivateProfileString(string section,
string key, string def, StringBuilder retVal,
int size, string filePath);
static public void IniWriteValue(string Section, string Key, string Value, string path)
{
WritePrivateProfileString(Section, Key, Value, path);
}
static public string IniReadValue(string Section, string Key, string path)
{
StringBuilder temp = new StringBuilder(1000);
int i = GetPrivateProfileString(Section, Key, "", temp, 1000, path);
return temp.ToString();
}
internal static string IniReadValue(string p, string p_2)
{
throw new NotImplementedException();
}
-------------------------------------------------------------------------------------------------------
Nun möchte ich ich in die Ini-Textdatei Zahlen eingeben und beim ausgeben in Visualstudio soll er sie zusammenzählen (addieren).