2 writes to _offset
mscorlib (2)
system\arraysegment.cs (2)
44_offset = 0; 61_offset = offset;
25 references to _offset
mscorlib (25)
system\arraysegment.cs (25)
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), 92return _offset; 107Contract.Assert( (null == _array && 0 == _offset && 0 == _count) 108|| (null != _array && _offset >= 0 && _count >= 0 && _offset + _count <= _array.Length), 119: _array.GetHashCode() ^ _offset ^ _count; 132return obj._array == _array && obj._offset == _offset && obj._count == _count; 156return _array[_offset + index]; 167_array[_offset + index] = value; 177int index = System.Array.IndexOf<T>(_array, item, _offset, _count); 180(index >= _offset && index < _offset + _count)); 182return index >= 0 ? index - _offset : -1; 207return _array[_offset + index]; 239int index = System.Array.IndexOf<T>(_array, item, _offset, _count); 242(index >= _offset && index < _offset + _count)); 253System.Array.Copy(_array, _offset, array, arrayIndex, _count); 300_start = arraySegment._offset;