I\'d like to store a one dimensional string array as an entry in my appSettings
. I can\'t simply separate elements with ,
or |
because
You could use the AppSettings with a System.Collections.Specialized.StringCollection.
var myStringCollection = Properties.Settings.Default.MyCollection;
foreach (String value in myCollection)
{
// do something
}
Each value is separated by a new line.
Here's a screenshot (german IDE but it might be helpful anyway)