Link Search Menu Expand Document

UString.ToString Method

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