Hello ! I wrote a program on C #, but I do not know how to save the settings in visual studio 2012? How is this done, can you help?
- Sorry, the settings of what? - VladD
|
2 answers
The question of saving the program settings was raised repeatedly, look, these answers have useful links and descriptions of possible options:
|
If we are talking about the settings of the program, then there are many options:
- your text / binary file
- serialization of an object that stores settings to a file
- ini file (classic :))
- registry.
- Any kind of specific solution.
|