7 references to Keys
Microsoft.CodeAnalysis (7)
Emit\EditAndContinue\SynthesizedTypeMaps.cs (3)
41
=> AnonymousTypes.
Keys
.All(static (key, other) => other.AnonymousTypes.ContainsKey(key), other) &&
42
AnonymousDelegates.
Keys
.All(static (key, other) => other.AnonymousDelegates.ContainsKey(key), other) &&
43
AnonymousDelegatesWithIndexedNames.
Keys
.All(static (key, other) => other.AnonymousDelegatesWithIndexedNames.ContainsKey(key), other);
src\Dependencies\Collections\Segmented\ImmutableSegmentedDictionary`2.cs (4)
98
ICollection<TKey> IDictionary<TKey, TValue>.Keys =>
Keys
;
102
IEnumerable<TKey> IReadOnlyDictionary<TKey, TValue>.Keys =>
Keys
;
108
ICollection IDictionary.Keys =>
Keys
;
249
foreach (var key in self.
Keys
)