Skip to content

Neotoxic-off/INISharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

INISharp

⚙️ INI file parser for C#

Usage

INISharp.Parser parser = new INISharp.Parser();

List<Models.Field> result = parser.Parse(
    File.ReadAllLines(
        "Example.ini"
    )
);

foreach (Models.Field field in result)
{
    Console.WriteLine($"[{field.Kind}] Key:{field.Key} => Value:{field.Value}");
}