Xamarin.Forms for UWP has a peculiarity which is bugging me since the beginning – if you reference local images they…
This article is part of the Xamarin Month February 2019. Thanks, Luis Matos (@luismatosluna on Twitter) for the cool initiative! Xamarin…
UWP apps have been designed to be more secure and explicit about what they are allowed to do on the…
Deploying apps to Azure App Service is as easy as 1,2,3. But sometimes things don’t go exactly as planned and…
The built-in TextBox control in UWP supports any textual input from the user, but in some cases, you might prefer…
The singleton pattern is useful when writing game components like a game manager or localization manager in Unity. I would…
Can you count how many times you wrote something like: Or if you fancy LINQ (and can sacrifice a bit…
Today I was trying to implement reading of ushort values from a little-endian byte array. The code to retrieve a…
I have recently come across this challenging question on Stack Overflow. The OP, my friend Touseef, tried to add Chinese…
Data binding is an excellent feature of the MVVM pattern and allows you to decouple views and view models. Because…