Implemented interface members:
1 write to
Microsoft.CodeAnalysis (1)
src\Dependencies\Collections\Segmented\SegmentedList`1.cs (1)
236this[index] = (T)value!;
10 references to
Microsoft.CodeAnalysis (10)
PEWriter\FullMetadataWriter.cs (1)
452get { return _rows[rowId - 1]; }
src\Dependencies\Collections\Segmented\ImmutableSegmentedList`1.cs (3)
100public T this[int index] => _list[index]; 104get => _list[index]; 110get => _list[index];
src\Dependencies\Collections\Segmented\ImmutableSegmentedList`1+ValueBuilder.cs (1)
51readonly get => ReadOnlyList[index];
src\Dependencies\Collections\Segmented\SegmentedList`1.cs (1)
229get => this[index];
Text\SourceText.cs (4)
985int start = _lineStarts[index]; 992int end = _lineStarts[index + 1]; 1010if (position >= _lineStarts[lastLineNumber]) 1015if (position < _lineStarts[i])