Whenever we update some user setting by calling the following code (Here the property name is given as 'SomeProperty').The following code runs on a button click eventHandler.
Settings.Default.SomeProperty = TextBox1.Text;
And save it by calling the save method like the following code
Settings.Default.Save();
[N.B: I am not leaving the TextBox1 empty, (i.e. initially I had initialized, SomeProperty's value as 'simple' and type as 'String' and obviously UserScope) And before I click the saving button I am writing 'Complex'- in TextBox1]
The value of 'SomeProperty' is changed, and I can see it as I load that value in a label in next run of the application. But when I try to manually find the updated value of 'SomeProperty' from the 'app.config' or 'app.exe.config' file I find that the value assigned to 'SomeProperty' while creating it is there(Not updated).
Can anyone please tell me where is the updated version of the .config file is saved?
What I have tried: I have no idea about why this is happening, and what is the remedy..