Open
Description
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.
Metadata
Metadata
Assignees
Labels
No labels