Convert specified value to compact AnsiString representation(no zeros added).
You can find more information in comments below.
/**
Convert float to ansi string without zeros at the end
@param value Float value
@return Ansi string
*/
AnsiString ToAnsiCompact(const float value);
/**
Convert double to ansi string without zeroes at the end
@param value Double value
@return Ansi string
*/
AnsiString ToAnsiCompact(const double value);
Namespace: | nitisa |
Include: | Nitisa/Core/Strings.h |