4 overrides of GetTypeCodeImpl
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
109
protected sealed override TypeCode
GetTypeCodeImpl
() => throw new NotSupportedException(SR.NotSupported_SignatureType);
System\RuntimeType.NativeAot.cs (1)
686
protected override TypeCode
GetTypeCodeImpl
() => ReflectionAugments.GetRuntimeTypeCode(this);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
245
protected override TypeCode
GetTypeCodeImpl
()
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoType.cs (1)
280
protected abstract override TypeCode
GetTypeCodeImpl
();
3 references to GetTypeCodeImpl
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
501
return type?.
GetTypeCodeImpl
() ?? TypeCode.Empty;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.Enum.cs (2)
54
if (underlyingType.
GetTypeCodeImpl
() != valueType.
GetTypeCodeImpl
())