Gets a string representation of the object elements.
Overrides MfListBase.ToString()
OutPutVar := instance.ToString([separator, startIndex, endIndex])
Gets a string representation of the object elements
separator
Optional separator that will be inserted between each element in the return string.
Default value is comma ","
Can be var string, empty string or instance of MfString.
startIndex
Optional. Default value is 0. The zero-based starting index to start reading elements from.
Can be var integer or any type that matches IsIntegerNumber.
endIndex
Optional. Default value is null which includes all elements from startIndex to end of list. The zero-based endIndex index to start reading elements from.
Can be var integer or any type that matches IsIntegerNumber.
Returns string var representing object elements
s := "the quick brown fox jumped over the lazy dog.`nThe cat was cool to the dog."
lst := MfListVar.FromString(s, false)
MsgBox % lst.ToString("") ; thequickbrownfoxjumpedoverthelazydog.Thecatwascooltothedog.
MsgBox % lst.ToString("|", 45) ; s|c|o|o|l|t|o|t|h|e|d|o|g|.