1 write to _array
System.Reflection.Metadata (1)
System\Reflection\Internal\Utilities\ImmutableMemoryStream.cs (1)
18
_array
= array;
9 references to _array
System.Reflection.Metadata (9)
System\Reflection\Internal\Utilities\ImmutableMemoryStream.cs (9)
23
return
_array
;
43
get { return
_array
.Length; }
54
if (value < 0 || value >=
_array
.Length)
69
int result = Math.Min(count,
_array
.Length - _position);
70
_array
.CopyTo(_position, buffer, offset, result);
80
int result = Math.Min(buffer.Length,
_array
.Length - _position);
81
_array
.AsSpan(_position, result).CopyTo(buffer);
96
SeekOrigin.End => checked(offset +
_array
.Length),
105
if (target < 0 || target >=
_array
.Length)