You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
String.Format with "n" specifier does not respect current locale settings.
In our country, there is a thousand separator " ". In your library is hardcoded thousand separator ".".
Please use settings from the current locale.
String.Format with "n" specifier does not respect current locale settings.
In our country, there is a thousand separator " ". In your library is hardcoded thousand separator ".".
Please use settings from the current locale.
const formatted: string = String.Format("{0:n}", 10000);
returns "10.000"
whould return "10 000" with cs-CZ locale.
The text was updated successfully, but these errors were encountered: