2 overrides of IsStructType
Microsoft.CSharp (2)
Microsoft\CSharp\RuntimeBinder\Semantics\Types\AggregateType.cs (1)
286public override bool IsStructType => OwningAggregate.IsStruct();
Microsoft\CSharp\RuntimeBinder\Semantics\Types\NullableType.cs (1)
46public override bool IsStructType => true;
1 reference to IsStructType
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (1)
551if (!typeSrc.IsClassType && !typeSrc.IsStructType || ((AggregateType)typeSrc).OwningAggregate.IsSkipUDOps())