You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 #83 when adding keys
Fixes#83
version 2.1.0
* IInidataFormatter allows to define the way an IniData structure
is converted to an string.
* Allows using an string as command delimiter instead of just one
character.