I know I can declare an array of string in XAML like this:
<x:Array Type="{x:Type System:String}">
<System:String> first </System:String>
<System:String> second </System:String>
<System:String> third </System:String>
</x:Array>
How can I declare an array of System.Collections.Specialized.StringDictionary in XAML
<x:Array Type="{x:Type Specialized:StringDictionary}">
<Specialized:StringDictionary>
(((what do I put here?)))
</Specialized:StringDictionary>
</x:Array>
Thanks!