Base:
method
GetHashCode
System.Object.GetHashCode()
5 overrides of GetHashCode
System.Private.CoreLib (5)
System\Reflection\Runtime\TypeInfos\NativeFormat\NativeFormatRuntimeGenericParameterTypeInfo.cs (1)
52public sealed override int GetHashCode()
System\Reflection\Runtime\TypeInfos\NativeFormat\NativeFormatRuntimeNamedTypeInfo.cs (1)
160public sealed override int GetHashCode()
System\Reflection\Runtime\TypeInfos\RuntimeConstructedGenericTypeInfo.cs (1)
170public sealed override int GetHashCode()
System\Reflection\Runtime\TypeInfos\RuntimeFunctionPointerTypeInfo.cs (1)
106public override int GetHashCode() => _key.GetHashCode();
System\Reflection\Runtime\TypeInfos\RuntimeHasElementTypeInfo.cs (1)
126public sealed override int GetHashCode()
7 references to GetHashCode
System.Private.CoreLib (7)
System\Reflection\Runtime\MethodInfos\NativeFormat\NativeFormatMethodCommon.cs (1)
267return _methodHandle.GetHashCode() ^ _contextTypeInfo.GetHashCode();
System\Reflection\Runtime\TypeInfos\RuntimeConstructedGenericTypeInfo.UnificationKey.cs (2)
66int hashCode = GenericTypeDefinition.GetHashCode(); 69hashCode ^= GenericTypeArguments[i].GetHashCode();
System\Reflection\Runtime\TypeInfos\RuntimeFunctionPointerTypeInfo.UnificationKey.cs (2)
70int hashCode = ReturnType.GetHashCode(); 73hashCode ^= ParameterTypes[i].GetHashCode();
System\Reflection\Runtime\TypeInfos\RuntimeHasElementTypeInfo.cs (1)
128return _key.ElementType.GetHashCode();
System\Reflection\Runtime\TypeInfos\RuntimeHasElementTypeInfo.UnificationKey.cs (1)
57return ElementType.GetHashCode();