|
|
Posted on
2004-11-10 12:52
Leo.Zhu
阅读( 242)
评论()
收藏
举报
using System;
using System.Runtime.InteropServices;
using System.Text;

namespace WR_INI
  {
 /**//// <summary>
/// IniFile 的摘要说明。
/// </summary>
public class IniFile
 { //
// TODO: 在此处添加构造函数逻辑
//
public string path;
//声明读写INI文件的API函数 需要using System.Runtime.InteropServices;
[DllImport("kernel32")]
private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);

//需要using System.Text;
[DllImport("kernel32")]
private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath);

//类的构造函数,传递INI文件名
public IniFile(string iniPath)
 {
path = iniPath;
}
//写INI文件
public void IniWriteValue(string Section, string Key, string Value)
 {
WritePrivateProfileString(Section, Key, Value, this.path);
}

//读取INI文件
public string IniReadValue(string Section, string Key)
 {
StringBuilder temp = new StringBuilder(255);
int i = GetPrivateProfileString(Section, Key, "", temp, 255, this.path);
return temp.ToString();
}
}
}
|