6 references to Span
System.Private.Windows.Core (5)
System\SpanReader.cs (5)
30readonly get => Span.Length - _unread.Length; 31set => _unread = Span[value..]; 245public void Rewind(int count) => _unread = Span[(Span.Length - _unread.Length - count)..]; 250public void Reset() => _unread = Span;
System.Windows.Forms (1)
System\Windows\Forms\Controls\ImageList\ImageListStreamer.cs (1)
60ReadOnlySpan<byte> remaining = reader.Span[reader.Position..];