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

◆ MoveNext()

bool System.ArrayEnumerator.MoveNext ( )
inline

Implements System.Collections.IEnumerator.

Definition at line 43 of file ArrayEnumerator.cs.

44 {
45 nint num = _index + 1;
46 if ((nuint)num >= _array.NativeLength)
47 {
49 return false;
50 }
51 _index = num;
52 return true;
53 }
nuint NativeLength
Definition Array.cs:432

References System.ArrayEnumerator._array, System.ArrayEnumerator._index, and System.Array.NativeLength.