Is there a way for me to include a simple array of strings, or List<string> on my custom subclass of ConfigurationSection? (Or an array or generic list of simple data objects, for that matter?)
I'm becoming familiar with the new (and VERY verbose) ConfigurationSection, ConfigurationElement, and ConfigurationElementCollection classes, but I'm by no means an expert yet.
It seems like ConfigurationSection should handle simple collections/lists on its own, without me having to create a custom ConfigurationElementCollection subclass for each and every one. But I haven't found any reference to this ability online.
Edit: accepting Dan's response as the answer, since it's probably the closest thing I'm going to get to the "old style" configSections. I always found it easy, flexible, and elegant that any XmlSerializable object could easily become a configSection. I'm sure the new framework is more powerful; however it's sad that it is SO cumbersome for simple configuration contructs, that we're reduced to going back to String.Split().
Here's a simple example.
//XML for config file:
Application Settings Architecture
http://msdn.microsoft.com/en-us/library/8eyb2ct1.aspx
Ok, an old post, but I remembered it when I came across a similar situation:
...
If you go to Project / Project Properties (in VS2008 or VS2010). There is a "Settings" tab.
If you add a new value....
One of the types is called: System.Collections.Specialized.StringCollection
Give it a name (I used "FavoriteColors").
Set the type (as instructed above).
Set the value(s).
The "String Collection Editor" says "Enter the strings in the collection (one per line)".
I entered:
Red
Yellow
Black
White
This will add some xml to your app.config file.
(You'll be better off going through the steps rather than pasting the xml above, because (for conciseness) I did not add all the xml to this post that is generated.
You should be able to "get at" the values via code like this:
Note, the steps above will produce the below C# code (auto code created for you.... it is not code you create) but the code looks like this:
I know that the question has been answered long time ago... but in my 'ConfigurationElement' classes, for string collection, I usually do the following:
And you can get a string list from this property with
OK, you asked for simple. Well, the simplest way to store a series of strings would be to use a delimited list (say, comma separated). That way you can store it in just one element (say in appSettings).
Of course, this has drawbacks but in most cases works well for a simple list. You can then use String.Split() to convert it back to an array/list.
Otherwise you are back to ConfigurationSection elements which, I agree, are very verbose and clumsy to work with. But I don't know of any other way, I'm afraid (but am happy to be proved wrong!).