I have a .NET class library that needs configuration parameters, their values are different for every deployment. I would normally store these in an app.config.
The question is similar to this one, however the entry point is not a .NET application: it's a C# class library that gets called by a C++/CLI wrapper that exports C functions, which get called by a native application.
Shoud I just read a configuration file manually or is there a more elegant way?