FormatInteger(Value: Integer): String;
Value. Value converted into string type.
The FormatInteger method converts integer values into string type according to regional standard settings.
Function GetInvariantInteger(Value: Integer): String;
Var
CI: ICultureInfo;
Begin
CI := CultureInfo.Invariant;
Return CI.FormatInteger(Value);
End Function GetInvariantInteger;
The specified function can be used to convert integer values into string type according to invariant culture settings.
See also: