1 write to _comparer
MSBuildTaskHost (1)
Collections\ConcurrentDictionary.cs (1)
120
_comparer
= comparer ?? EqualityComparer<TKey>.Default;
5 references to _comparer
MSBuildTaskHost (5)
Collections\ConcurrentDictionary.cs (5)
127
Debug.Assert(
_comparer
.GetHashCode(key) == hashcode);
142
if (hashcode == n._hashcode &&
_comparer
.Equals(n._key, key))
162
Debug.Assert(
_comparer
.GetHashCode(key) == hashcode);
192
if (hashcode == node._hashcode &&
_comparer
.Equals(node._key, key))
296
int hashcode =
_comparer
.GetHashCode(key);