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