Base:
property
IsReferenceType
Microsoft.CodeAnalysis.CSharp.Symbols.TypeSymbol.IsReferenceType
14 references to IsReferenceType
Microsoft.CodeAnalysis.CSharp (14)
Binder\Binder.ValueChecks.cs (2)
3034if (!_underlyingParameter.ContainingType.IsInterface || _type.IsReferenceType) 3064if (!_underlyingParameter.ContainingType.IsInterface || _type.IsReferenceType)
Binder\Semantics\Conversions\ConversionsBase.cs (9)
3255if (source.IsReferenceType) 3549if ((object)t != null && t.IsReferenceType) 3561if ((object)t != null && source.IsInterfaceType() && t.IsReferenceType) 3567if ((object)s != null && s.IsReferenceType && destination.IsInterfaceType() && !HasImplicitReferenceTypeParameterConversion(s, destination, ref useSiteInfo)) 3573if ((object)s != null && (object)t != null && t.IsReferenceType && t.DependsOn(s)) 3601if ((object)t != null && !t.IsReferenceType) 3613if (source.IsInterfaceType() && (object)t != null && !t.IsReferenceType) 3619if ((object)s != null && !s.IsReferenceType && destination.IsInterfaceType() && !HasImplicitReferenceTypeParameterConversion(s, destination, ref useSiteInfo)) 3625if ((object)s != null && (object)t != null && !t.IsReferenceType && t.DependsOn(s))
Symbols\Source\SourceOrdinaryMethodSymbol.cs (2)
651if (!typeParameter.IsReferenceType) 665if (typeParameter.IsReferenceType || typeParameter.IsValueType)
Symbols\TypeSymbolExtensions.cs (1)
78return !typeParameter.IsValueType && !(typeParameter.IsReferenceType && typeParameter.IsNotNullable == true);