4 overrides of ComputeName
System.Reflection.MetadataLoadContext (4)
System\Reflection\TypeLoading\General\Sentinels.cs (1)
48protected sealed override string ComputeName() => throw null!;
System\Reflection\TypeLoading\Methods\RoConstructedGenericMethod.cs (1)
31protected sealed override string ComputeName() => _genericMethodDefinition.Name;
System\Reflection\TypeLoading\Methods\RoDefinitionMethod.cs (1)
47protected sealed override string ComputeName() => _decoder.ComputeName();
System\Reflection\TypeLoading\Methods\RoSyntheticMethod.cs (1)
35protected sealed override string ComputeName() => _name;
1 reference to ComputeName
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Methods\RoMethod.cs (1)
32public sealed override string Name => _lazyName ??= ComputeName();