读取和写入INI配置文件,熟肉下载即可食用。
private static IniFile _file;
private static void Test()
{
string strPath = AppDomain.CurrentDomain.BaseDirectory;
//初始化文件
_file = new IniFile(strPath + "config.ini");
//表示为读取CONFIG节点下AAA字段的值(在没有取得数据时默认值为NONE)
//同理可以读取任意节点下任意字段的值
string readStr = _file.ReadString("CONFIG", "AAA", "NONE");
//表示为写入CONFIG节点下BBB字段的值
//同理可以写入任意节点下任意字段的值
_file.WriteString("CONFIG", "BBB", "NONE");
//表示为删除CONFIG节点下CCC字段
//同理可以删除任意节点下的任意字段
_file.DeleteKey("CONFIG", "CCC");
}
2021-03-24 11:06:03
8KB
c#
开发工具
1