0

I'm developnig a Windows Forms application.

I should upload new version of dll to users. If I do that, does it reset Properties.Settings to default values or will they stay saved (on user's computer)?

Dino Velić
  • 888
  • 11
  • 24

1 Answers1

1

by uploading the DLL, you don't reset the settings Here you can get the answer -

Properties.Settings.Default.Save(); -> Where is that file

Where are the Properties.Settings.Default stored?

Community
  • 1
  • 1
Rabi
  • 2,210
  • 17
  • 18
  • Great, haven't found that. So these settings are saved in Windows' AppData folder and they can't be lost unless deleted. Thank you Rabi! – Dino Velić Aug 08 '14 at 12:29