作者:张佩君宣真威任 | 来源:互联网 | 2022-10-31 12:21
1> Adrian..:
(Ounces, Color)
是在C#7中引入的元组。对应的类型是ValueTuple
。从参考源中,您可以确定GetHashCode()
是通过使用
public static int Combine(int h1, int h2)
{
uint rol5 = ((uint)h1 <<5) | ((uint)h1 >> 27);
return ((int)rol5 + h1) ^ h2;
}