Link Search Menu Expand Document

String.ToString Method

Explanation String Returns the string of the object as is.
Call format var s = str.ToString( )
Return value String Object string
Arguments None
Exception None
Example of use
var str = new String("ABCDEF");
print(str.ToString(), "\n");
    
Related item