Where i can save string , and when program run, user can change it -overrride. (not config file, i do not want that anybody can see what written).
Many thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Since you are using Windows Application, your best bet is isolated storage.
[Old Answer]
In case you are using a web application:
If you want to do save the string till the user is logged in then you can store it in the Session state, if you want to store it for the lifetime of the web application in IIS then you can use Application State
Of course you can store the same in a database if required.