C# How to save values from a listbox into settings.settings

159 Views Asked by At

How can I save values from a listbox into settings.settings and how can I load them when I start my application.

1

There are 1 best solutions below

0
On BEST ANSWER

Suppose you have a key named "Setting1" in your settings.settings

To read the value of this key

String value = Settings.Default.Setting1;