7 references to Span
System.Private.Windows.Core (6)
System\SpanWriter.cs (6)
16readonly get => Span.Length - _unwritten.Length; 17set => _unwritten = Span[value..]; 20public readonly int Length => Span.Length; 82public void Rewind(int count) => _unwritten = Span[(Span.Length - _unwritten.Length - count)..]; 87public void Reset() => _unwritten = Span;
System.Windows.Forms (1)
System\Windows\Forms\Controls\ImageList\ImageListStreamer.cs (1)
43RunLengthEncoder.TryEncode(input, writer.Span[writer.Position..], out int written);