using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace gather
{
class ReadWriteIni
{
[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);
//写入INI文件
public void IniWriteValue(string Section, string Key, string Value,string path)
{
WritePrivateProfileString(Section, Key, Value, path);
}
//读取INI文件
public string IniReadValue(string Section, string Key, string path)
{
StringBuilder temp = new StringBuilder(255);
int i = GetPrivateProfileString(Section, Key, "", temp, 255, path);
return temp.ToString();
}
}
}