5 writes to _span
System.Private.Windows.Core (5)
System\BufferScope.cs (5)
25_span = _array; 35_span = initialBuffer; 62_span = initialBuffer; 67_span = _array; 100_span = _array;
11 references to _span
System.Private.Windows.Core (11)
System\BufferScope.cs (11)
83if (_span!.Length >= capacity) 91_span.CopyTo(newArray); 103public ref T this[int i] => ref _span[i]; 105public readonly Span<T> this[Range range] => _span[range]; 107public readonly Span<T> Slice(int start, int length) => _span.Slice(start, length); 109public readonly ref T GetPinnableReference() => ref MemoryMarshal.GetReference(_span); 111public readonly int Length => _span.Length; 113public readonly Span<T> AsSpan() => _span; 115public static implicit operator Span<T>(BufferScope<T> scope) => scope._span; 117public static implicit operator ReadOnlySpan<T>(BufferScope<T> scope) => scope._span; 129public override readonly string ToString() => _span.ToString();