5 writes to _span
System.Private.Windows.Core (5)
System\BufferScope.cs (5)
26_span = _array; 36_span = initialBuffer; 63_span = initialBuffer; 68_span = _array; 101_span = _array;
11 references to _span
System.Private.Windows.Core (11)
System\BufferScope.cs (11)
84if (_span!.Length >= capacity) 92_span.CopyTo(newArray); 104public ref T this[int i] => ref _span[i]; 106public readonly Span<T> this[Range range] => _span[range]; 108public readonly Span<T> Slice(int start, int length) => _span.Slice(start, length); 110public readonly ref T GetPinnableReference() => ref MemoryMarshal.GetReference(_span); 112public readonly int Length => _span.Length; 114public readonly Span<T> AsSpan() => _span; 116public static implicit operator Span<T>(BufferScope<T> scope) => scope._span; 118public static implicit operator ReadOnlySpan<T>(BufferScope<T> scope) => scope._span; 130public override readonly string ToString() => _span.ToString();