It's a simple question, maybe stupid, but I'm stuck from hours..
I have that in the XAML part:
<ContentPage.Resources>
<ResourceDictionary>
<System:Uint32 x:Key="UintValue">50</System:Uint32>
</ResourceDictionary>
</ContentPage.Resources>
Of course, to have the <System>
type access, I had this line:
xmlns:System="clr-namespace:System;assembly=mscorlib"
However, I have an XAML parse Exception.. When I comment <System:Uint32...</System:Uint32>
then it works. #ButIDontHaveTheValue..
There is a link to the doc of Uint
Type | Range | Size | .NET Framework type
uint | 0 to 4,294,967,295 | Unsigned 32-bit integer | System.UInt32
So If I'm right, then Uint32 is coming from System, so I have to reference it like System:Uint32 isn't?
Thank for help !