这个不是ini 配置文件吗
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
namespace ini
{
class RWIni
{
[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文件
///
/// 节点名称
/// 关键字
/// 值
/// INI文件路径
static public void IniWriteValue(string Section, string Key, string Value, string filepath)
{
WritePrivateProfileString(Section, Key, Value, filepath);
}
///
/// 读取INI文件
///
/// 节点名称
/// 关键字
/// INI文件路径
///
static public string IniReadValue(string Section, string Key, string filepath)
{
StringBuilder temp = new StringBuilder(255);
int i = GetPrivateProfileString(Section, Key, "", temp,
255, filepath);
return temp.ToString();
}
}
}
我记得有逐行读取的函数 放入一个string str[]数组里 然后再去数组里寻找contain的元素
你这存的格式也太乱了,加上开始和结束标签多方便
建议去学学XML,最适合信息保存了
参考一下ini文件的操作