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)
128public override int Length => _underlyingData.Length; 133if (stringIndex < 0 || stringIndex >= _underlyingData.Length) 148if (char.IsHighSurrogate(_underlyingData[index])) 150Debug.Assert(index + 1 >= _underlyingData.Length || 151!char.IsLowSurrogate(_underlyingData[index + 1])); 156var ch = _underlyingData[index];