Base:
property
IsReferenceType
Microsoft.CodeAnalysis.CSharp.Symbols.TypeSymbol.IsReferenceType
Implemented interface member:
property
IsReferenceType
Microsoft.CodeAnalysis.Symbols.ITypeSymbolInternal.IsReferenceType
14 references to IsReferenceType
Microsoft.CodeAnalysis.CSharp (14)
Binder\Binder.ValueChecks.cs (2)
3407
if (!_underlyingParameter.ContainingType.IsInterface || _type.
IsReferenceType
)
3439
if (!_underlyingParameter.ContainingType.IsInterface || _type.
IsReferenceType
)
Binder\Semantics\Conversions\ConversionsBase.cs (9)
3275
if (source.
IsReferenceType
)
3569
if ((object)t != null && t.
IsReferenceType
)
3581
if ((object)t != null && source.IsInterfaceType() && t.
IsReferenceType
)
3587
if ((object)s != null && s.
IsReferenceType
&& destination.IsInterfaceType() && !HasImplicitReferenceTypeParameterConversion(s, destination, ref useSiteInfo))
3593
if ((object)s != null && (object)t != null && t.
IsReferenceType
&& t.DependsOn(s))
3621
if ((object)t != null && !t.
IsReferenceType
)
3633
if (source.IsInterfaceType() && (object)t != null && !t.
IsReferenceType
)
3639
if ((object)s != null && !s.
IsReferenceType
&& destination.IsInterfaceType() && !HasImplicitReferenceTypeParameterConversion(s, destination, ref useSiteInfo))
3645
if ((object)s != null && (object)t != null && !t.
IsReferenceType
&& t.DependsOn(s))
Symbols\Source\SourceOrdinaryMethodSymbol.cs (2)
681
if (!typeParameter.
IsReferenceType
)
695
if (typeParameter.
IsReferenceType
|| typeParameter.IsValueType)
Symbols\TypeSymbolExtensions.cs (1)
79
return !typeParameter.IsValueType && !(typeParameter.
IsReferenceType
&& typeParameter.IsNotNullable == true);