int642Str Function

Converts the specified integer parameter to the equivalent text string.


str int642Str(int64 integer) 

Parameter

Description

integer

The int64 to convert to a string.

The equivalent text string of the integer parameter.

static void example()
{
    ;
    print "This is int2Str, value is " + int2Str(intMax());
    print "This is int642Str, value is " + int642Str(int64Max());
    pause;
}

Community Additions

ADD
Show: