GetCharEnumerator()

Namespace ›› System ›› MfCharList ›› Methods ››
Parent Previous Next

GetCharEnumerator()

OutputVar := instance.GetCharEnumerator()

GetCharEnumerator()

Gets an enumerator that enumerates through the MfCharList instance as chars

Returns

Returns an enumerator that iterates  through the list as chars.

Remarks

Returns an enumerator that iterates through a collection.

Example

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.