Implements System.Collections.IEnumerator.
Definition at line 11 of file ArrayEnumerator.cs.
12 {
13 get
14 {
18 {
20 {
21 ThrowHelper.ThrowInvalidOperationException_InvalidOperation_EnumNotStarted();
22 }
23 else
24 {
25 ThrowHelper.ThrowInvalidOperationException_InvalidOperation_EnumEnded();
26 }
27 }
29 }
30 }
object InternalGetValue(nint flattenedIndex)