13 overrides of IsArrayImpl
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
496protected override bool IsArrayImpl()
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (1)
223protected override bool IsArrayImpl() { return false; }
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
171protected override bool IsArrayImpl() => _unmodifiedType.IsArray;
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
24protected abstract override bool IsArrayImpl();
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
144protected override bool IsArrayImpl() => typeImpl.IsArray;
src\libraries\System.Private.CoreLib\src\System\RuntimeType.cs (1)
187protected override bool IsArrayImpl() => RuntimeTypeHandle.IsArray(this);
src\System\Reflection\Emit\RuntimeEnumBuilder.cs (1)
215protected override bool IsArrayImpl()
src\System\Reflection\Emit\RuntimeGenericTypeParameterBuilder.cs (1)
162protected override bool IsArrayImpl() { return false; }
src\System\Reflection\Emit\RuntimeTypeBuilder.cs (1)
898protected override bool IsArrayImpl()
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
421protected override bool IsArrayImpl()
System.Reflection.Emit (1)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
496protected override bool IsArrayImpl()
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoType.cs (1)
41protected abstract override bool IsArrayImpl();
System.Windows.Forms.Tests (1)
System\Windows\Forms\ListBindingHelperTests.cs (1)
932protected override bool IsArrayImpl() => throw new NotImplementedException();
1 reference to IsArrayImpl
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
50public bool IsArray => IsArrayImpl();