I've struggled to add a name/value or dictionary entry into the Settings.settings file in a VS2010 project. Unfortunantly, the built-in designer doesn't allow you to easily enter data for these types for some reason (the namespace is System.Collections.Specialized).
I want to manually add one of these data types (e.g. ListDictionary or StringDicitonary), but I can't find a reference XSD to describe the XML pattern to serialize the data.
Where can this information be found? Ideally, it'd be an XSD containing all .NET types or sub-types. I thought this should be simple to find, but it's been daunting so far.
I realize I could write a small program to serialize each of these datatypes, and create a list of examples, but this seems like it should aleady exist somewhere.