Associating a modifyable settings file with a class library in C# ?
Posted
by mishal153
on Stack Overflow
See other posts from Stack Overflow
or by mishal153
Published on 2010-04-19T14:23:12Z
Indexed on
2010/04/19
14:33 UTC
Read the original article
Hit count: 274
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.
© Stack Overflow or respective owner