2 writes to _array
mscorlib (2)
system\arraysegment.cs (2)
43_array = array; 60_array = array;
29 references to _array
mscorlib (29)
system\arraysegment.cs (29)
69Contract.Assert( (null == _array && 0 == _offset && 0 == _count) 70|| (null != _array && _offset >= 0 && _count >= 0 && _offset + _count <= _array.Length), 73return _array; 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), 117return null == _array 119: _array.GetHashCode() ^ _offset ^ _count; 132return obj._array == _array && obj._offset == _offset && obj._count == _count; 150if (_array == null) 156return _array[_offset + index]; 161if (_array == null) 167_array[_offset + index] = value; 173if (_array == null) 177int index = System.Array.IndexOf<T>(_array, item, _offset, _count); 201if (_array == null) 207return _array[_offset + index]; 235if (_array == null) 239int index = System.Array.IndexOf<T>(_array, item, _offset, _count); 249if (_array == null) 253System.Array.Copy(_array, _offset, array, arrayIndex, _count); 265if (_array == null) 276if (_array == null) 299_array = arraySegment._array;