OutputVar := MfString.Concat(args*)
Creates the string representation of a specified objects.
args*
An object array that contains the elements to concatenate.
Any var or object derived from MfObject can be an args
Returns The concatenated string var representations of the values of the elements args*
Static Method.
Concatenates the string representations of the elements in a specified array.
mfs := new MfString()
mfs.Append("The quick brown fox.")
str := " "
mfi := new MfInteger(2)
msg := " is a great number!"
strResult := MfString.Concat(mfs, str, mfi, msg)
MsgBox, 64, Result, %strResult%
Figure 1 Show the result of the above code sample.
Figure 1: