2 writes to _array
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\ArraySegment.cs (2)
49
_array
= array;
62
_array
= array;
20 references to _array
System.Private.CoreLib (20)
src\libraries\System.Private.CoreLib\src\System\ArraySegment.cs (20)
67
public T[]? Array =>
_array
;
82
return
_array
![_offset + index];
91
_array
![_offset + index] = value;
102
_array
is null ? 0 : HashCode.Combine(_offset, _count,
_array
.GetHashCode());
109
System.Array.Copy(
_array
!, _offset, destination, destinationIndex, _count);
122
System.Array.Copy(
_array
!, _offset, destination.
_array
!, destination._offset, _count);
129
obj.
_array
==
_array
&& obj._offset == _offset && obj._count == _count;
140
return new ArraySegment<T>(
_array
!, _offset + index, _count - index);
152
return new ArraySegment<T>(
_array
!, _offset + index, count);
161
return Empty.
_array
!;
165
System.Array.Copy(
_array
!, _offset, array, 0, _count);
184
return
_array
![_offset + index];
193
_array
![_offset + index] = value;
201
int index = System.Array.IndexOf(
_array
!, item, _offset, _count);
223
return
_array
![_offset + index];
242
int index = System.Array.IndexOf(
_array
!, item, _offset, _count);
275
if (
_array
== null)