Associating a modifyable settings file with a class library in C# ?
- by mishal153
I have a class library(abc.dll) in which i have used a settings file. An exe (app.exe) references this class library. At runtime if i want to change the values of the settings without having to rebuild the class library/application, what is the best way to approach this problem ?
In my current approach the setting values get embeded in the library, and thus i dont see any way to update them without rebuilding the whole thing.