StoneKit.Configuration.IniParser 1.24.121.182729

There is a newer version of this package available.
See the version list below for details.
dotnet add package StoneKit.Configuration.IniParser --version 1.24.121.182729                
NuGet\Install-Package StoneKit.Configuration.IniParser -Version 1.24.121.182729                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="StoneKit.Configuration.IniParser" Version="1.24.121.182729" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add StoneKit.Configuration.IniParser --version 1.24.121.182729                
#r "nuget: StoneKit.Configuration.IniParser, 1.24.121.182729"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install StoneKit.Configuration.IniParser as a Cake Addin
#addin nuget:?package=StoneKit.Configuration.IniParser&version=1.24.121.182729

// Install StoneKit.Configuration.IniParser as a Cake Tool
#tool nuget:?package=StoneKit.Configuration.IniParser&version=1.24.121.182729                

StoneKit.Configuration.IniParser

A simple and efficient INI file parser for .NET 8+

NuGet Version License

Overview

StoneKit.Configuration.IniParser is a lightweight library for parsing INI files in .NET 8+ applications. It allows you to read and manipulate configuration settings stored in INI files with ease.

Installation

Install the library via NuGet Package Manager Console:

Install-Package StoneKit.Configuration.IniParser

Getting Started

Loading INI File

// Create an instance of IniFile and load data from the specified file
var iniFile = new IniFile();
iniFile.LoadFile("path/to/your/file.ini");

// Alternatively, use the static method to quickly load information from an INI file
var quickIniFile = IniFile.Parse("path/to/your/file.ini");

Accessing Configuration Values

// Retrieve a value from a specific section and key
string? value = iniFile["SectionName", "KeyName"];

// Retrieve a value with a default if not found
string defaultValue = iniFile["SectionName", "KeyName", "Default"];

// Get an array of section names
string[] sections = iniFile.Sections;

// Get an array of key names in a specific section
string[] keysInSection = iniFile.GetKeys("SectionName");

Example INI File

; Example INI File

[Database]
Server=localhost
Port=5432
DatabaseName=mydatabase
Username=myuser
Password=mypassword

[AppSettings]
LogLevel=Info
MaxConnections=100

Contributions

Contributions, issues, and feature requests are welcome. Feel free to submit a pull request or open an issue on GitHub.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.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.

Version Downloads Last updated
2024.1.1.391401 72 10/5/2024
2024.1.1.305385 62 8/5/2024
2024.1.1.268769 87 7/9/2024
2024.1.1.261674 103 7/4/2024
2024.1.1.261665 101 7/4/2024
2024.1.1.261630 99 7/4/2024
2024.1.1.260673 113 7/3/2024
2024.1.1.260489 96 7/3/2024
2024.1.1.260485 98 7/3/2024
1.24.703.180756 114 7/3/2024
1.24.703.164604 109 7/3/2024
1.24.703.121207 105 7/3/2024
1.24.626.192706 87 6/26/2024
1.24.612.859 99 6/11/2024
1.24.611.233127 92 6/11/2024
1.24.611.232750 90 6/11/2024
1.24.603.121931 75 6/3/2024
1.24.317.170730 116 3/17/2024
1.24.317.170544 96 3/17/2024
1.24.317.164648 97 3/17/2024
1.24.317.161355 88 3/17/2024
1.24.121.184215 119 1/21/2024
1.24.121.182729 106 1/21/2024