2 writes to _count
mscorlib (2)
system\arraysegment.cs (2)
45_count = array.Length; 62_count = count;
22 references to _count
mscorlib (22)
system\arraysegment.cs (22)
69Contract.Assert( (null == _array && 0 == _offset && 0 == _count) 70|| (null != _array && _offset >= 0 && _count >= 0 && _offset + _count <= _array.Length), 88Contract.Assert( (null == _array && 0 == _offset && 0 == _count) 89|| (null != _array && _offset >= 0 && _count >= 0 && _offset + _count <= _array.Length), 107Contract.Assert( (null == _array && 0 == _offset && 0 == _count) 108|| (null != _array && _offset >= 0 && _count >= 0 && _offset + _count <= _array.Length), 111return _count; 119: _array.GetHashCode() ^ _offset ^ _count; 132return obj._array == _array && obj._offset == _offset && obj._count == _count; 152if (index < 0 || index >= _count) 163if (index < 0 || index >= _count) 177int index = System.Array.IndexOf<T>(_array, item, _offset, _count); 180(index >= _offset && index < _offset + _count)); 203if (index < 0 || index >= _count) 239int index = System.Array.IndexOf<T>(_array, item, _offset, _count); 242(index >= _offset && index < _offset + _count)); 253System.Array.Copy(_array, _offset, array, arrayIndex, _count); 301_end = _start + arraySegment._count;