I am looking to declare an array in XAML. I can do this in WPF. Just can't seem to find the right namespace in WinRT. Anyone know?
<Page xmlns:list="?Something?">
    <Page.Resources>
        <x:Int32 x:Name="MyScalarValue">123</x:Int32>
        <list:Array x:Name="MyValueList">
            <x:Int32>123</x:Int32>
            <x:Int32>456</x:Int32>
        <list:Array>
    </Page.Resources>
</Page>
 
     
    