Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use Settings.Default.MySettingName & Settings.Default.Save to save and load settings. When I change my version number how am I able to get the settings from the old version and apply to them my new version? I just can't quite figure it out.

share|improve this question
How do you mean old settings? From where? – Oded Aug 7 '10 at 7:34
@Oded: the settings are stored in a folder structure that contains the version. – Henk Holterman Aug 7 '10 at 7:39
@Henk - thanks for clarifying. I never use Settings myself... – Oded Aug 7 '10 at 7:43

1 Answer

up vote 6 down vote accepted

Settings.Upgrade() looks like it has some promise - check out this post - and note that this method should be called once-and-only-once by your application.

share|improve this answer
Thank you, that has really helped :) – Luke Aug 7 '10 at 22:57
No problem - glad to hear it, Luke. – Will A Aug 7 '10 at 23:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.