7 references to Keys
Microsoft.CodeAnalysis.InteractiveHost (7)
src\Dependencies\Collections\Segmented\ImmutableSegmentedDictionary`2+Builder+KeyCollection.cs (2)
46=> _dictionary.ReadOnlyDictionary.Keys.CopyTo(array, arrayIndex); 55=> ((ICollection)_dictionary.ReadOnlyDictionary.Keys).CopyTo(array, index);
src\Dependencies\Collections\Segmented\ImmutableSegmentedDictionary`2+KeyCollection.cs (2)
45=> _dictionary._dictionary.Keys.CopyTo(array, arrayIndex); 48=> ((ICollection)_dictionary._dictionary.Keys).CopyTo(array, index);
src\Dependencies\Collections\Segmented\SegmentedDictionary`2.cs (3)
234ICollection<TKey> IDictionary<TKey, TValue>.Keys => Keys; 236IEnumerable<TKey> IReadOnlyDictionary<TKey, TValue>.Keys => Keys; 1049ICollection IDictionary.Keys => Keys;