Created
February 22, 2012 01:07
-
-
Save bmatzelle/1880345 to your computer and use it in GitHub Desktop.
Reading INI file with Nini
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Shows an example of Nini's IniDocument class to read an INI file. | |
Example configuration.ini file: | |
[Cars] | |
model = Toyota | |
year = 2012 | |
*/ | |
Nini.Ini.IniDocument doc = new Nini.Ini.IniDocument ("configuration.ini"); | |
Console.WriteLine ("Model: " + doc.Get("Cars", "model")); | |
Console.WriteLine ("Year: " + doc.GetInt("Cars", "year")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment