Code: C# 存取 ini 的 Windows API

這是一個簡易的 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);

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();
}

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *