Currently, I\'m setting DecimalSeparator to a \'.\' in each procedure which uses these functions.
It would be much easier to set this globally at the start of the pr
I am/was under the assumption that the global DecimalSeperator
variable would not be touched by the RTL. If not, then all these routines have an optional parameter FormatSettings
which you could use. Globaly declare a TFormatSettings
variable and use it for each occurance of these routines.
A small benefit of it could be that the routines are thread-safe when you specify your own format settings.