所有代码示例都需要以下 using 子句:
using IniParser;
using IniParser.Model;
NI 数据存储在嵌套字典中,因此访问与节中的键关联的值非常简单。使用提供的方法之一加载数据。
var parser = new FileIniDataParser();
IniData data = parser.ReadFile("Configuration.ini");
检索命名节内键的值。值始终以 s 的形式检索。string
string useFullScreenStr = data["UI"]["fullscreen"];
// useFullScreenStr contains "true"
bool useFullScreen = bool.Parse(useFullScreenStr);
?修改字典中的值,而不是检索到的值,并保存到新文件或覆盖。
data["UI"]["fullscreen"] = "true";
parser.WriteFile("Configuration.ini", data);
?
var parser = new IniParser.Parser.IniDataParser();
IniData config = parser.Parse(File.ReadAllText("global_config.ini"));
IniData user_config = parser.Parse(File.ReadAllText("user_config.ini"));
config.Merge(user_config);
// config now contains that data from both ini files, and the values of
// the keys and sections are overwritten with the values of the keys and
// sections that also existed in the user config file
?
config["user_settings"].Merge(user_config["user_settings"]);
若要查询、添加或删除注释,请访问模型中的属性。Comments?
SectionData?
KeyData
var listOfCommentsForSection = config.["user_settings"].Comments;
var listOfCommentsForKey = config["user_settings"].GetKeyData("resolution").Comments;
?但是请注意,与将文件写回磁盘相比,注释将被重新排列,以便 注释写在它们引用的元素之前。
特此记录
anlog
2023年12月26日