Is it possible to change the currency despite the cuture(only currency). Becouse i have an app that changes the language depending on culture info but i wan`t to keep the same currency.
When i change only the currency it doesn`t work:
CultureInfo currentCulture = new CultureInfo(System.Threading.Thread.CurrentThread.CurrentCulture.LCID);
currentCulture.NumberFormat.CurrencySymbol = "zł";
System.Threading.Thread.CurrentThread.CurrentCulture = currentCulture;
When i change only the currency it doesn`t work:
CultureInfo currentCulture = new CultureInfo(System.Threading.Thread.CurrentThread.CurrentCulture.LCID);
currentCulture.NumberFormat.CurrencySymbol = "zł";
System.Threading.Thread.CurrentThread.CurrentCulture = currentCulture;