5 references to IsClass
Microsoft.CSharp (5)
Microsoft\CSharp\RuntimeBinder\Semantics\Conversions.cs (2)
106
if ((aggSrc.
IsClass
() && !aggSrc.IsSealed() && aggDest.IsInterface()) ||
107
(aggSrc.IsInterface() && aggDest.
IsClass
() && !aggDest.IsSealed()) ||
Microsoft\CSharp\RuntimeBinder\Semantics\ExplicitConversion.cs (2)
703
if ((aggSrc.
IsClass
() && !aggSrc.IsSealed() && aggDest.IsInterface()) ||
704
(aggSrc.IsInterface() && aggDest.
IsClass
() && !aggDest.IsSealed()) ||
Microsoft\CSharp\RuntimeBinder\Semantics\Types\AggregateType.cs (1)
292
public override bool IsClassType => OwningAggregate.
IsClass
();