Implemented interface members:
method
ContainsKey
System.Collections.Generic.IDictionary<TKey, TValue>.ContainsKey(TKey)
method
ContainsKey
System.Collections.Generic.IReadOnlyDictionary<TKey, TValue>.ContainsKey(TKey)
4 references to ContainsKey
Microsoft.Build.Engine.UnitTests (2)
Collections\OMcollections_tests.cs (2)
214
Assert.True(readOnlyDictionary.
ContainsKey
("P"));
215
Assert.False(readOnlyDictionary.
ContainsKey
("p2"));
System.Linq.Expressions (1)
System\Linq\Expressions\Compiler\CompilerScope.cs (1)
183
while (!locals.Indexes.
ContainsKey
(variable))
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\ObjectModel\ReadOnlyDictionary.cs (1)
129
return IsCompatibleKey(key) &&
ContainsKey
((TKey)key);