StoneKit.Configuration.IniParser
1.24.121.184215
See the version list below for details.
dotnet add package StoneKit.Configuration.IniParser --version 1.24.121.184215
NuGet\Install-Package StoneKit.Configuration.IniParser -Version 1.24.121.184215
<PackageReference Include="StoneKit.Configuration.IniParser" Version="1.24.121.184215" />
paket add StoneKit.Configuration.IniParser --version 1.24.121.184215
#r "nuget: StoneKit.Configuration.IniParser, 1.24.121.184215"
// Install StoneKit.Configuration.IniParser as a Cake Addin #addin nuget:?package=StoneKit.Configuration.IniParser&version=1.24.121.184215 // Install StoneKit.Configuration.IniParser as a Cake Tool #tool nuget:?package=StoneKit.Configuration.IniParser&version=1.24.121.184215
StoneKit.Configuration.IniParser
StoneKit.Configuration.IniParser
not only simplifies the parsing of INI files but also offers additional features, including the ability to read and write objects. This library is designed to make working with configuration data in INI files more versatile and convenient.
Overview
In addition to basic INI file parsing, StoneKit.Configuration.IniParser
provides advanced features for handling objects. This includes reading objects from INI files and writing object properties back to INI sections. The library automatically manages the serialization and deserialization of object properties, simplifying the configuration process.
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");
Reading and Writing Objects
// Define a sample configuration class
public class AppConfig
{
public string Server { get; set; }
public int Port { get; set; }
public string DatabaseName { get; set; }
// ... other properties
}
// Load an instance of AppConfig from the INI file
AppConfig config = iniFile.Load<AppConfig>("Database");
// Modify the object
config.Server = "newServer";
config.Port = 8080;
// Save the modified object back to the INI file
iniFile.Save(config);
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 | Versions 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. |
-
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 | 71 | 10/5/2024 |
2024.1.1.305385 | 62 | 8/5/2024 |
2024.1.1.268769 | 87 | 7/9/2024 |
2024.1.1.261674 | 102 | 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 | 113 | 7/3/2024 |
1.24.703.164604 | 108 | 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 | 118 | 1/21/2024 |
1.24.121.182729 | 105 | 1/21/2024 |