1 write to _underlyingData
Microsoft.AspNetCore.App.Analyzers (1)
Infrastructure\VirtualChars\VirtualCharSequence.Chunks.cs (1)
125
_underlyingData
= data;
6 references to _underlyingData
Microsoft.AspNetCore.App.Analyzers (6)
Infrastructure\VirtualChars\VirtualCharSequence.Chunks.cs (6)
128
public override int Length =>
_underlyingData
.Length;
133
if (stringIndex < 0 || stringIndex >=
_underlyingData
.Length)
148
if (char.IsHighSurrogate(
_underlyingData
[index]))
150
Debug.Assert(index + 1 >=
_underlyingData
.Length ||
151
!char.IsLowSurrogate(
_underlyingData
[index + 1]));
156
var ch =
_underlyingData
[index];