Gets a string representation of the object elements.
Overrides MfListBase.ToString()
OutPutVar := instance.ToString([returnAsObj, startIndex, count])
Gets a string representation of the object elements
returnAsObj
Optional boolean value. Default is false.
If true result is returned as instance of MfString; Otherwise result is returned as a var string.
Can be boolean var or instance of MfBool.
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.
count
Optional, the number of elements from StartIndex to include in the output string.
If omitted then starts at StartIndex and includes all elements to the end current instance.
Returns string var or MfString instance representing object elements
lst := MfCharList.FromString("The Quick Brown Fox Jumped Over The Lazy Dog.", false)
MsgBox % lst.ToString()
; TheQuickBrownFoxJumpedOverTheLazyDog.
MsgBox % lst.ToString(true, 3, 5).Value ; Quick