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