7 overrides of ComputeFullName
System.Reflection.MetadataLoadContext (7)
System\Reflection\TypeLoading\Types\RoConstructedGenericType.cs (1)
66protected sealed override string? ComputeFullName()
System\Reflection\TypeLoading\Types\RoDefinitionType.cs (1)
36protected sealed override string? ComputeFullName()
System\Reflection\TypeLoading\Types\RoFunctionPointerType.cs (1)
51protected sealed override string? ComputeFullName() => null;
System\Reflection\TypeLoading\Types\RoGenericParameterType.cs (1)
35protected sealed override string? ComputeFullName() => null;
System\Reflection\TypeLoading\Types\RoHasElementType.cs (1)
41protected sealed override string? ComputeFullName()
System\Reflection\TypeLoading\Types\RoModifiedType.cs (1)
145protected override string? ComputeFullName() => _unmodifiedType.Call_ComputeFullName();
System\Reflection\TypeLoading\Types\RoStubType.cs (1)
38protected sealed override string ComputeFullName() => throw null!;
2 references to ComputeFullName
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Types\RoType.cs (2)
118public sealed override string? FullName => _lazyFullName ??= ComputeFullName(); 120internal string? Call_ComputeFullName() => ComputeFullName();