7 references to Keys
Microsoft.CodeAnalysis (7)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2+Builder+KeyCollection.cs (2)
44=> _dictionary.ReadOnlyDictionary.Keys.CopyTo(array, arrayIndex); 53=> ((ICollection)_dictionary.ReadOnlyDictionary.Keys).CopyTo(array, index);
src\Dependencies\Collections\ImmutableSegmentedDictionary`2+KeyCollection.cs (2)
43=> _dictionary._dictionary.Keys.CopyTo(array, arrayIndex); 46=> ((ICollection)_dictionary._dictionary.Keys).CopyTo(array, index);
src\Dependencies\Collections\SegmentedDictionary`2.cs (3)
232ICollection<TKey> IDictionary<TKey, TValue>.Keys => Keys; 234IEnumerable<TKey> IReadOnlyDictionary<TKey, TValue>.Keys => Keys; 1047ICollection IDictionary.Keys => Keys;