OutputVar := instance.GetCharEnumerator()
Gets an enumerator that enumerates through the MfCharList instance as chars
Returns an enumerator that iterates through the list as chars.
Returns an enumerator that iterates through a collection.
sb := new MfText.StringBuilder()
lst := MfCharList.FromString("The Quick Brown Fox Jumped Over The Lazy Dog.", false)
enum := lst.GetCharEnumerator()
While (enum.Next(index, Char))
{
sb.Append(Char)
}
MsgBox % sb.ToString()
; TheQuickBrownFoxJumpedOverTheLazyDog.