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)
23return _array; 43get { return _array.Length; } 54if (value < 0 || value >= _array.Length) 69int result = Math.Min(count, _array.Length - _position); 70_array.CopyTo(_position, buffer, offset, result); 80int result = Math.Min(buffer.Length, _array.Length - _position); 81_array.AsSpan(_position, result).CopyTo(buffer); 96SeekOrigin.End => checked(offset + _array.Length), 105if (target < 0 || target >= _array.Length)