1 write to _underlyingData
Microsoft.CodeAnalysis.CodeStyle (1)
VirtualCharSequence.Chunks.cs (1)
95_underlyingData = data;
6 references to _underlyingData
Microsoft.CodeAnalysis.CodeStyle (6)
VirtualCharSequence.Chunks.cs (6)
98public override int Length => _underlyingData.Length; 103if (stringIndex < 0 || stringIndex >= _underlyingData.Length) 116if (char.IsHighSurrogate(_underlyingData[index])) 118Debug.Assert(index + 1 >= _underlyingData.Length || 119!char.IsLowSurrogate(_underlyingData[index + 1])); 124var ch = _underlyingData[index];