5 writes to _index
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Queue.cs (5)
433_index = -1; 439_index = -2; 450_index++; 455_index = -2; 507_index = -1;
7 references to _index
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Queue.cs (7)
447if (_index == -2) 452if (_index == _q._size) 467uint arrayIndex = (uint)(_q._head + _index); // this is the actual index into the queue's backing array 487if (_index < 0) 495Debug.Assert(_index == -1 || _index == -2); 496throw new InvalidOperationException(_index == -1 ? SR.InvalidOperation_EnumNotStarted : SR.InvalidOperation_EnumEnded);