This library allows to read or create INI data programaticly. --- An implementation for reading / writing INI data to and from streams, files and strings is included.
Really simple to use:
IniData data = parser.LoadFile("TestIniFile.ini");
data["ConfigSection"]["fullscreen"] = true;
parser.SaveFile("NewTestIniFile.ini");