toString()

Converts a version object to a character string or converts major, minor, and point versions to a character string.

Syntax

char * toString();
 static char * toString(int major, int minor, int point);
 

Parameters

major [in]
Is an integer that specifies a major version, which precedes the first delimiter in a version.
minor [in]
Is an integer that specifies a minor version, which follows the first delimiter in a version.
point [in]
Is an integer that specifies a point version, which follows the second delimiter in a version.

Return values

A character string that concatenates the major, minor, and point version numbers, from a version object or from major, minor, and point numbers that you specify. The delimiter character separates the major, minor, and point numbers in the character string.

See also

See also the description of the CxVersion constructors.

Copyright IBM Corp. 1997, 2003