Szpi / IniWrapper.ini-parser

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IniWrapper.ini-parser

This library extends IniWrapper to use ini-parser library to parse ini files. Main goal is to support multiplatform.

Quick start

Create IniWrapperFactory and invoke CreateWithIniParser method as it is shown below.

var iniWrapperFactory = new IniWrapperFactory();
var iniWrapper = iniWrapperFactory.CreateWithIniParser(x =>
{
	x.IniFilePath = path;
});

var iniWrapperFactory = new IniWrapperFactory();
var iniWrapper = iniWrapperFactory.CreateWithIniParser(new IniSettings()
{
	IniFilePath = path
});

About

License:MIT License


Languages

Language:C# 100.0%