Base:
method
IsValueTypeImpl
System.Type.IsValueTypeImpl()
5 overrides of IsValueTypeImpl
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureConstructedGenericType.cs (1)
56protected sealed override bool IsValueTypeImpl() => _genericTypeDefinition.IsValueType;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureFunctionPointerType.cs (1)
74protected override bool IsValueTypeImpl() => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureGenericParameterType.cs (1)
30protected sealed override bool IsValueTypeImpl() => throw new NotSupportedException(SR.NotSupported_SignatureType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureHasElementType.cs (1)
31protected sealed override bool IsValueTypeImpl() => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureModifiedType.cs (1)
60protected override bool IsValueTypeImpl() => _unmodifiedType.IsValueType;