4 writes to _tail
System.Collections.NonGeneric (4)
System\Collections\Queue.cs (4)
60_tail = 0; 121_tail = 0; 165_tail = (_tail + 1) % _array.Length; 289_tail = (_size == capacity) ? 0 : _size;
8 references to _tail
System.Collections.NonGeneric (8)
System\Collections\Queue.cs (8)
109if (_head < _tail) 114Array.Clear(_array, 0, _tail); 164_array[_tail] = obj; 165_tail = (_tail + 1) % _array.Length; 255if (_head < _tail) 262Array.Copy(_array, 0, arr, _array.Length - _head, _tail); 276if (_head < _tail) 283Array.Copy(_array, 0, newarray, _array.Length - _head, _tail);