I have this C# code for example
DateTime.Now.ToString(\"MMMM dd, yyyy\");
Now the current thread is loading the Arabic culture. So the resu
You can use the Windows.Globalization.NumberFormatting.NumeralSystemTranslator class to translate between the Latin and any of the supported numeral systems. To translate to Arabic, set the NumeralSystem property to "Arab", then you can call the TranslateNumerals method.
Alternatively you can just use Windows.Globalization.DateTimeFormatting.DateTimeFormatter class directly.