(Formerly known as global function StrCopy, which is now obsolete)
String.Copy()
Returns a new copy of the specified string. You should not normally need to use this,
since strings can be assigned using the = operator.
Example:
String mystring = "This is a test string.";
String newstring = mystring.Copy();
Display(newstring);
will display "This is a test string".
|