Skip to content

Instantly share code, notes, and snippets.

@bmatzelle
Created February 22, 2012 01:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bmatzelle/1880345 to your computer and use it in GitHub Desktop.
Save bmatzelle/1880345 to your computer and use it in GitHub Desktop.
Reading INI file with Nini
/*
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