4 writes to _tail
mscorlib (4)
system\collections\queue.cs (4)
67_tail = 0; 128_tail = 0; 171_tail = (_tail + 1) % _array.Length; 285_tail = (_size == capacity) ? 0 : _size;
8 references to _tail
mscorlib (8)
system\collections\queue.cs (8)
120if (_head < _tail) 124Array.Clear(_array, 0, _tail); 170_array[_tail] = obj; 171_tail = (_tail + 1) % _array.Length; 259if (_head < _tail) { 263Array.Copy(_array, 0, arr, _array.Length - _head, _tail); 275if (_head < _tail) { 279Array.Copy(_array, 0, newarray, _array.Length - _head, _tail);