1 instantiation of RuntimeMethodKey
System.Private.TypeLoader (1)
Internal\TypeSystem\TypeSystemContext.Runtime.cs (1)
452
return _runtimeMethods.GetOrCreateValue(new
RuntimeMethodKey
(unboxingStub, asyncVariant, returnDroppingAsyncThunk, owningType, nameAndSignature));
6 references to RuntimeMethodKey
System.Private.TypeLoader (6)
Internal\TypeSystem\TypeSystemContext.Runtime.cs (6)
341
public class RuntimeMethodKeyHashtable : LockFreeReaderHashtable<
RuntimeMethodKey
, MethodDesc>
343
protected override int GetKeyHashCode(
RuntimeMethodKey
key)
353
protected override bool CompareKeyToValue(
RuntimeMethodKey
key, MethodDesc value)
424
protected override MethodDesc CreateValueFromKey(
RuntimeMethodKey
key)
447
private
RuntimeMethodKey
.RuntimeMethodKeyHashtable _runtimeMethods;
451
_runtimeMethods ??= new
RuntimeMethodKey
.RuntimeMethodKeyHashtable();