這是一個簡易的 Windows API
能夠提供 ini 的寫入以及讀取
using System.Runtime.InteropServices;
[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);
[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);
public void IniWriteValue(string Section, string Key, string Value)
{
WritePrivateProfileString(Section, Key, Value, IniPath);
}
public string IniReadValue(string Section, string Key)
{
StringBuilder temp = new StringBuilder(255);
int i = GetPrivateProfileString(Section, Key, “”, temp, 255, IniPath);
return temp.ToString();
}