How to make an int
variable show as currency in console app. Begin with EGP. I tried the following code, but it only shows the Arabic as "ج.م", not EGP.
double x = 12.5;
Console.WriteLine(x.ToString("C",CultureInfo.CreateSpecificCulture("ar-EG")));
But the result is: ?.?.? 12.5
instead of "EGP" because it is in Arabic language. What I need is to make it EGP 12.5 not "ج.م"