Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ MoveNext()

bool System.CharEnumerator.MoveNext ( )
inline

Implements System.Collections.IEnumerator.

Definition at line 43 of file CharEnumerator.cs.

44 {
45 if (_index < _str.Length - 1)
46 {
47 _index++;
49 return true;
50 }
51 _index = _str.Length;
52 return false;
53 }

References System.CharEnumerator._currentElement, System.CharEnumerator._index, and System.CharEnumerator._str.