4 implementations of IsValueType
Microsoft.CodeAnalysis.CSharp (4)
Symbols\ArrayTypeSymbol.cs (1)
231public override bool IsValueType
Symbols\NamedTypeSymbol.cs (1)
408public override bool IsValueType
Symbols\TypeParameterSymbol.cs (1)
582public sealed override bool IsValueType
Symbols\TypeSymbol.cs (1)
2524bool ITypeSymbolInternal.IsValueType => this.IsValueType;
4 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.