ToString: String;
The ToString property returns the value of the variable converted into string type.
Sub UserProc;
Var
b: Boolean;
i: Integer;
s: String;
Begin
i := 123;
b := True;
s := i.ToString + b.ToString;
End Sub UserProc;
After executing the example the "s" variable contains the 123True value.
See also: