Hello
I would like to find out where (in what file) do settings get saved when my application runs (made with windows forms - after i publish my application, not when i debug it). All my settings are saved with the Scope being "User" and the default value being 0.
For example i got this code
So when i click the buttonAdd button it increase the x, when i click the buttonSave it saves the setting. I know where the default setting is saved, i cant find any file where the new settings are saved, the ones that change from one runtime to the other.
Thanks anticipated.
I would like to find out where (in what file) do settings get saved when my application runs (made with windows forms - after i publish my application, not when i debug it). All my settings are saved with the Scope being "User" and the default value being 0.
For example i got this code
Code:
int x; x = Properties.Settings.Default.xSetting; private void buttonAdd_Click(object sender, EventArgs e) { x++; } private void buttonSave_Click(object sender, EventArgs e) { Properties.Settings.Default.xSetting = x; }
Thanks anticipated.
Comment