4 overrides of ComputeMethodSig
System.Reflection.MetadataLoadContext (4)
System\Reflection\TypeLoading\General\Sentinels.cs (1)
46protected sealed override MethodSig<RoParameter> ComputeMethodSig() => throw null!;
System\Reflection\TypeLoading\Methods\RoConstructedGenericMethod.cs (1)
40protected sealed override MethodSig<RoParameter> ComputeMethodSig() => _genericMethodDefinition.SpecializeMethodSig(this);
System\Reflection\TypeLoading\Methods\RoDefinitionMethod.cs (1)
73protected sealed override MethodSig<RoParameter> ComputeMethodSig() => _decoder.SpecializeMethodSig(this);
System\Reflection\TypeLoading\Methods\RoSyntheticMethod.cs (1)
42protected sealed override MethodSig<RoParameter> ComputeMethodSig()
1 reference to ComputeMethodSig
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Methods\RoMethod.cs (1)
93private MethodSig<RoParameter> MethodSig => _lazyMethodSig ??= ComputeMethodSig();