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