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