Currency.ToString

Syntax

ToString: String;

Description

The ToString property returns the value of the current variable converted into string type.

Example

Sub Main;

Var

b: Boolean;

c: Currency;

S: String;

Begin

c := 123;

b := True;

s := c.ToString + b.ToString;

End Sub Main;

After executing the example the "S" variable will contain the value 123True.

See also:

Currency