I have create a user setting in my Windows form application named "ExchangeRate" and set it to "1", then the value is being updated at runtime:
Properties.Settings.Default.ExchangeRate = 1.5;
Properties.Settings.Default.Save();
But when I restart the application the "ExchangeRate" value reset back to "1".
How can I fix this issue to load the value I previously set "1.5" in this case?