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
The only solution is to manually convert the digits.
You could use the CurrentCulture.NumberFormat.NativeDigits array instead of explicitly providing the Unicode characters to support any other languages in addition to the Arabic-Indic digits, but as far as builtin support by culture-aware classes such as DateTime it seems unimplemented or something.