Skip to content
This repository has been archived by the owner on Apr 13, 2020. It is now read-only.
/ Confused Public archive

Confused is a simple library that parses .conf files (ini-style) into a easy readable dictionary.

Notifications You must be signed in to change notification settings

simwak/Confused

Repository files navigation

Confused Build Status

Confused is a simple library that parses .conf files (ini-style) into a easy readable dictionary.

[Sample]
HelloMessage = Hello World!
ACoolNumber = 42
AnArray = 4, 12, 14
var conf = Parse.File("Sample.conf");

string helloMessage = conf["Sample"]["HelloMessage"];
int aCoolNumber = Parse.Value<int>(conf["Sample"]["ACoolNumber"]);
int[] anArray = Parse.Array<int>(conf["Sample"]["AnArray"]);

About

Confused is a simple library that parses .conf files (ini-style) into a easy readable dictionary.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages