10 overrides of IsArrayImpl
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
498protected override bool IsArrayImpl()
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (1)
222protected override bool IsArrayImpl() { return false; }
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
172protected override bool IsArrayImpl() => _unmodifiedType.IsArray;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
27protected abstract override bool IsArrayImpl();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
146protected override bool IsArrayImpl() => typeImpl.IsArray;
System\RuntimeType.NativeAot.cs (1)
281protected override unsafe bool IsArrayImpl()
System.Private.Reflection.Execution (1)
Internal\Reflection\Execution\TypeLoader\ConstraintValidatorSupport.cs (1)
126protected override bool IsArrayImpl()
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
421protected override bool IsArrayImpl()
System.Reflection.Emit (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
498protected override bool IsArrayImpl()
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoType.cs (1)
41protected abstract override bool IsArrayImpl();
1 reference to IsArrayImpl
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
50public bool IsArray => IsArrayImpl();