Configuration file handling is a common problem so I wondered why nobody has asked a similar question yet. In .NET we usually use the app.config file for application runtime paramaters, however this seems oversized for some smaller tools. I have considered an .ini
style configuration file.
Are there any other appropriate alternatives which could be easily integrated in any project?
For desktop applications you could use application settings. And a similar post illustrating them.