I need to store a list of columns/datatype pairs as app settings. The amount of column/datatype pairs will be around 50 - 100, but could be more. I cannot store these in a table due to client requirements. There will be UI for the user to add/edit/delete from the list.
I was initially thinking of a delimited string stored in app.config. Is there a practical limit to the size of string stored in a key in app.config?
Is there a better way?
[edit following sanjii's comment] is it possible to read/write an xml file with a dataset?