SharpINI 2.2.0
dotnet add package SharpINI --version 2.2.0
NuGet\Install-Package SharpINI -Version 2.2.0
<PackageReference Include="SharpINI" Version="2.2.0" />
<PackageVersion Include="SharpINI" Version="2.2.0" />
<PackageReference Include="SharpINI" />
paket add SharpINI --version 2.2.0
#r "nuget: SharpINI, 2.2.0"
#:package SharpINI@2.2.0
#addin nuget:?package=SharpINI&version=2.2.0
#tool nuget:?package=SharpINI&version=2.2.0
SharpINI - A simple INI Reader/Writer for C#
SharpINI is a simple .NET Standard 2.0 compatible library to parse and write INI strings.
INIs are somehow a problematic format, since there is no global standard like for JSON or XML. There are so many implementations that parse the files using different rules. This library tries to provide an interface with parsing options to parse some of the INI files out there without creating too much complexity.
Flexibility
This library allows the following things to be defined while parsing:
- Space chars
- Line breaks (limited)
- Comment chars (only at the beginning of a line)
- Behaviour when there are multiple sections with the same name
- Behaviour when there are multiple keys in a section with the same name
- Behaviour when there are strings outside of a section (when no section has been started)
- Removing spaces before and after value
General parsing rules
These rules are hard and cannot be changed using parsing options
- Any space at the start of a line is removed
- Any space between the key of a key-value-pair and the
=is removed - Section titles must not contain closing brackets (
]) in their name - Any line must be a section title, a key-value pair, a comment line or an empty line (an empty line is just filled with space chars)
Spaces
Whenever "Space" is used in this readme, it means every char that was defined as spaceChars in the parse options.
By default they are:
0x20Space0x09Tab0xA0Non-breaking space (NBSP)
Reading
The Markdown renderer on NuGet doesn't support some parts of this README. Please read it on Github
SharpINI parses the string into the following format:
- Each Section is represented as
IDictionary<string, string> - The INI file is represented as
IDictionary<string, IDictionary<string, string>>
See Types-section for more information
Basic reading
using SharpINI;
var myINIString = @"[MySection]
Key1=val1
Key2=val2
[MySection2]
Key1=val3
Key2=val4";
var parsed = INIReader.ReadINI(myINIString);
/*parsed:
[
[MySection,
[Key1, val1]
[Key2, val2]
],
[MySection2,
[Key1, val3]
[Key2, val4]
]
]
*/
var key = parsed["MySection"]["Key1"]; // => "val1"
Reading with options
using SharpINI;
var myINIString = @"[MySection]
Key1=val1
Key2=val2
[MySection]
Key1=val3
Key3=val4";
var options = new ParseOptions(multiSectionMode: MultiSectionMode.MERGE,
multiKeyMode: MultiKeyMode.OVERRIDE);
var parsed = INIReader.ReadINI(myINIString, options);
/*parsed:
[
[MySection,
[Key1, val3]
[Key2, val2]
[Key3, val4]
]
]
*/
Parse options
The Markdown renderer on NuGet doesn't support tables. Please read the docu on Github
Writing
When writing INI files, SharpINI accepts the same object type like it produces while reading: IDictionary<string, IDictionary<string, string>>
Basic writing
using SharpINI;
var iniString = INIWriter.WriteINI(parsed);
/*iniString: @"[MySection]
Key1 = val1
Key2 = val2
[MySection2]
Key1 = val3
Key2 = val4"
*/
As you see, there are now spaces before and after the =. You can define such render/write options using RenderOptions which are passed to WriteINI.
Writing with options
using SharpINI;
var options = new RenderOptions(spaceAfterKey: false,
spaceBeforeValue: false,
linesBetweenSections: 0);
var iniString = INIWriter.WriteINI(parsed, options);
/*iniString: @"[MySection]
Key1=val1
Key2=val2
[MySection2]
Key1=val3
Key2=val4"
*/
RenderOptions
The Markdown renderer on NuGet doesn't support tables. Please read the docu on Github
Convert parse options to render options
You can generate a RenderOptions object from your ParseOptions by calling the method parseOptions.ToRenderOptions(). This will convert your parse options to render options.
Following values are converted:
lineBreak(first line break string)space(first space char)spaceAfterKey, based ontrimSpaceBeforeValuespaceBeforeValue, based ontrimSpaceBeforeValueinitialSelectionName
Types
When reading with INIReader.ReadINI, an object of type INIFile is returned. This type implements IDictionary<string, IDictionary<string, string>> but replaces the access through the index (file["myKey"]). You can use it like any normal IDictionary, but if you try to access a key which doesn't exists, null is returned instead of an exception being thrown. Additionally, instead of an IDictionary<string, string>, an INISection is returned which again inherits IDictionary<string, string>. This object has the same behaviour like INIFile and returns null if the given key doesn't exist.
But: This feature of INIFile and INISection can only be used if you treat the object as an INIFile or INISection. As soon as your variable has the IDictionary-type instead of INIFile or INISection, the normal Dictionary-code is executed. So if you want to use this null-feature, always store your objects using var, INIFile or INISection.
var file = INIReader.ReadINI(someINIString);
//Type of file: INIFile
var val = file["someNonExistentKey"];
// => val == null
Dictionary<string, IDictionary<string, string>> dicFile = file;
//Upcasting to Dictionary-type
var dicVal = dicFile["someNonExistentKey"];
//An exception is thrown
If you're accessing a section through INIFile which has been manually added by your code which is not a INISection but a normal IDictionary<string, string>, null is returned as the cast to INISection failed. So, if you're adding new sections, either use new INISection() or access it through the IDictionary-type instead of the INIFile-type.
var file = INIReader.ReadINI(someINIString);
file["newSection"] = new INISection();
var section = file["newSection"];
//section: INISection
IDictionary<string, IDictionary<string, string>> dicFile = file;
dicFile["newSection"] = new Dictionary<string, string>();
section = file["newSection"];
//section: null
Using internal methods
Beside ReadINI, INIReader contains methods like ReadSectionTitle and ReadKeyValue. These methods are used internally. If you want to use these methods for whatever reason, you have to tell SharpINI to perform additional checks in these methods, as by default they omit checks done by the SharpINI-caller method. To announce the usage of these methods, compile the library with the SHARE_INTERNAL_METHODS flag (obviously not possible when using the precompiled NuGet package).
To be more performant, the reading is done by simply moving a cursor over the string, so that a new substring does not have to be created for each element. This string-shifting is done by the internal class StringView. This class is also only shown if you activate the compiliation flag SHARE_INTERNAL_METHODS. So for using the internal methods, you have to create a StringView instance.
License
SharpINI is licensed under the MIT License
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.