
今天给大家推荐一个操作库,这个库就可以解决我们的问题。
项目简介
技术架构
跨平台:这是基于.Netstandard2.0开发的系统,可以部署在Docker,Windows,Linux,Mac。
项目结构
使用方法
文件加载
Configuration.LoadFromFile("myConfig.cfg"; // 文件
Configuration.LoadFromStream(myStream; // 文本流
Configuration.LoadFromString(myString; // 文本
Configuration.LoadFromBinaryFile("myConfig.cfg"; // 二进制
Configuration.LoadFromBinaryStream(myStream; // 二进制流
文件保存
myConfig.SaveToFile("myConfig.cfg"; // 文件
myConfig.SaveToStream(myStream; // 文件流
myConfig.SaveToBinaryFile("myConfig.cfg"; // 二进制文件
myConfig.SaveToBinaryStream(myStream; // 二进制流
使用方法
var cfg = new Configuration(;
cfg["SomeStructure"]["SomeString"].StringValue = "foobar";
cfg["SomeStructure"]["SomeInt"].IntValue = 2000;
cfg["SomeStructure"]["SomeInts"].IntValueArray = new[] { 1, 2, 3 };
cfg["SomeStructure"]["SomeDate"].DateTimeValue = DateTime.Now;
cfg.SaveToFile(filename;
对象操作
var cfg = new Configuration(;
//对象.
var p = new SomeClass
{
SomeString = "foobar",
SomeInt = 2000,
SomeInts = new[] { 1, 2, 3 },
SomeDate = DateTime.Now
};
//设置
cfg.Add(Section.FromObject("SomeStructure", p;
数组操作
var cfg = new Configuration(;cfg["GeneralSection"]["SomeInts"].IntValueArray = new[] { 1, 2, 3 };
// 获取数组类型值
int[] someIntValuesBack = cfg["GeneralSection"]["SomeInts"].GetValueArray<int>(;
float[] sameValuesButFloats = cfg["GeneralSection"]["SomeInts"].GetValueArray<float>(;
string[] sameValuesButStrings = cfg["GeneralSection"]["SomeInts"].GetValueArray<string>(;
// 获取数组对象
object[] sameValuesButObjects = cfg["GeneralSection"]["SomeInts"].GetValueArray(typeof(int;
配置文件注释
//获取包含所有有效注释分隔字符的数组。当前值为{“#”,“;”}。
Configuration.ValidCommentChars{get;}
//获取或设置保存配置时的首选注释字符。默认值为“#”。
Configuration.PreferredCommentChar{get;set;}
//获取或设置设置的数组元素分隔符。默认值为“,”。
Configuration.ArrayElementSeparator{get;set;}
//获取或设置一个值,该值指示在分析配置时是否应忽略内联注释。
bool Configuration.IgnoreInlineComments{get;set;}
//获取或设置一个值,该值指示在分析配置时是否应忽略前置注释。
bool Configuration.IgnorePreComments{get;set;}
//获取或设置一个值,该值指示在创建配置时是否应添加等号之间的空格。
bool Configuration.SpaceBetweenEquals{get;set;}
//获取或设置一个值,该值指示字符串值是否不带引号,但包括其间的所有内容
bool Configuration.OutputRawStringValues{get;set;}
项目地址
更多开源项目请查看:一个专注推荐优秀.Net开源项目的榜单
- End -