3 implementations of IsValueType
Microsoft.CodeAnalysis.CSharp (3)
Symbols\NamedTypeSymbol.cs (1)
402public override bool IsValueType
Symbols\TypeParameterSymbol.cs (1)
576public sealed override bool IsValueType
Symbols\TypeSymbol.cs (1)
2459bool ITypeSymbolInternal.IsValueType => this.IsValueType;
5 references to IsValueType
Microsoft.CodeAnalysis (4)
Symbols\ITypeSymbolInternal.cs (4)
24/// <see cref="IsReferenceType"/> and <see cref="IsValueType"/> both return true. However, for an unconstrained type 25/// parameter, <see cref="IsReferenceType"/> and <see cref="IsValueType"/> will both return false. 31/// <see cref="IsReferenceType"/> and <see cref="IsValueType"/> both return true. However, for an unconstrained type 32/// parameter, <see cref="IsReferenceType"/> and <see cref="IsValueType"/> will both return false.
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\TypeSymbol.vb (1)
246Public MustOverride ReadOnly Property IsValueType As Boolean Implements ITypeSymbol.IsValueType, ITypeSymbolInternal.IsValueType