Base:
8 references to GetHashCode
ILCompiler.Compiler (5)
Compiler\CompilerTypeSystemContext.DynamicInvoke.cs (2)
15protected override int GetKeyHashCode(MethodSignature key) => key.GetHashCode(); 16protected override int GetValueHashCode(DynamicInvokeMethodThunk value) => value.TargetSignature.GetHashCode();
parent\parent\Common\TypeSystem\IL\Stubs\DynamicInvokeMethodThunk.cs (1)
122return base.ComputeHashCode() ^ _targetSignature.GetHashCode();
parent\parent\Common\TypeSystem\IL\Stubs\TypeGetTypeMethodThunk.cs (2)
149return key.DefaultAssemblyName.GetHashCode() ^ key.GetTypeOverload.Signature.GetHashCode(); 153return value.DefaultAssemblyName.GetHashCode() ^ value.Signature.GetHashCode();
ILCompiler.TypeSystem (3)
parent\parent\Common\TypeSystem\Common\FunctionPointerType.cs (1)
41_hashCode = _signature.GetHashCode();
parent\parent\Common\TypeSystem\Common\TypeSystemContext.cs (2)
217return key.GetHashCode(); 222return value.Signature.GetHashCode();