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