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)
232
ICollection<TKey> IDictionary<TKey, TValue>.Keys =>
Keys
;
234
IEnumerable<TKey> IReadOnlyDictionary<TKey, TValue>.Keys =>
Keys
;
1047
ICollection IDictionary.Keys =>
Keys
;