|
Project Information
Members
Featured
Downloads
Wiki pages
Links
|
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:
// Load ini file
IniData data = parser.LoadFile("TestIniFile.ini");
// Retrieve value for key 'fullscreen' inside a config section
string useFullScreen? = data["ConfigSection"]["fullscreen"];
// Modify the value
data["ConfigSection"]["fullscreen"] = true;
// save new ini file
parser.SaveFile("NewTestIniFile.ini");
|