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

◆ MoveNext()

bool System.ArraySegment< T >.Enumerator.MoveNext ( )
inline

Implements System.Collections.IEnumerator.

Definition at line 48 of file ArraySegment.cs.

49 {
50 if (_current < _end)
51 {
52 _current++;
53 return _current < _end;
54 }
55 return false;
56 }

References System.ArraySegment< T >.Enumerator._current, and System.ArraySegment< T >.Enumerator._end.