8 references to IsSZArray
System.Reflection.MetadataLoadContext (8)
System\Reflection\Runtime\BindingFlagSupport\MemberPolicies.cs (2)
143if (t1.IsSZArray() != t2.IsSZArray())
System\Reflection\Runtime\SignatureTypeExtensions.cs (3)
37if (pattern.IsSZArray()) 39return actual.IsSZArray() && pattern.GetElementType()!.MatchesExactly(actual.GetElementType()!); 115if (signatureType.IsSZArray())
System\Reflection\TypeLoading\General\Assignability.cs (2)
75bool fromTypeIsSzArray = fromTypeInfo.IsSZArray(); 76bool toTypeIsSzArray = toTypeInfo.IsSZArray();
System\Reflection\TypeLoading\Types\RoModifiedType.cs (1)
127public override bool IsSZArray => _unmodifiedType.IsSZArray();