Reputation: 21160
I would like to save a arraylist to the settings class...does any one have an example I could follow.
c#, .net 2.0
Upvotes: 0
Views: 1461
Reputation: 116977
In your Settings file editor, add a new setting that is of type System.Collections.Arraylist.
In your code, you can then set this value by doing:
Properties.Settings.Default.MySetting = myArrayList;
Upvotes: 2