12 references to CombineHashCodes
System.Private.CoreLib (12)
src\libraries\System.Private.CoreLib\src\System\Tuple.cs (12)
74return CombineHashCodes(CombineHashCodes(h1, h2), h3);
79return CombineHashCodes(CombineHashCodes(h1, h2), CombineHashCodes(h3, h4));
84return CombineHashCodes(CombineHashCodes(h1, h2, h3, h4), h5);
89return CombineHashCodes(CombineHashCodes(h1, h2, h3, h4), CombineHashCodes(h5, h6));
94return CombineHashCodes(CombineHashCodes(h1, h2, h3, h4), CombineHashCodes(h5, h6, h7));
99return CombineHashCodes(CombineHashCodes(h1, h2, h3, h4), CombineHashCodes(h5, h6, h7, h8));
301return Tuple.CombineHashCodes(comparer.GetHashCode(m_Item1!), comparer.GetHashCode(m_Item2!));
1234return Tuple.CombineHashCodes(comparer.GetHashCode(m_Item7!), t.GetHashCode(comparer));