Tags: Azoup/ini-parser
Tags
Version 2.3.0 New configuration AllowCreateSectionsOnFly. When true if you access a non existing section using the indexer the section is created on the fly instead of throwing an exception. Defaults to false e.g. IniData data = new IniData(); data.Configuration.AllowCreateSectionsOnFly = true; data["Section1"]["key1"] = "value1"; // No exception! Console.WriteLine(data["Section1"]["key1"]); // Prints "value1"
v2.3.0 New API (backward compatible) Allows setting the NewLine character to use when writing an IniData structure to a file using a IIniDataFormatter. Use the property NewLineStr in available on IniData.Configuration Bug Fixes: - Fixed license url on nuget package - Fix regex to allow parse unicode characters
Merge branch 'development' * development: Bump version to 2.2.2 Cleaned up docs Marked AddKey(string, KeyData) method obsolete; use AddKey(KeyData) Add tests to prevent similar bugs as found in rickyah#83 when adding keys Fixes rickyah#83
PreviousNext