Don't know if what you're asking is possible. But what I do is I concatenate values using a separator like ";" for instance.
So you have something like:
<add key="runningDays" value="Mon;Tue;Wed;Thu;Fri"/>
Then I split the value string from config using the separator to get the list of possible values for the given key.