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)
127Debug.Assert(_comparer.GetHashCode(key) == hashcode); 142if (hashcode == n._hashcode && _comparer.Equals(n._key, key)) 162Debug.Assert(_comparer.GetHashCode(key) == hashcode); 192if (hashcode == node._hashcode && _comparer.Equals(node._key, key)) 296int hashcode = _comparer.GetHashCode(key);