2 overrides of IsArray
System.Private.CoreLib (2)
System\Reflection\Runtime\TypeInfos\RuntimeArrayTypeInfo.cs (1)
36public override bool IsArray => true;
System\Reflection\Runtime\TypeInfos\RuntimePointerTypeInfo.cs (1)
22public sealed override bool IsArray => false;
2 references to IsArray
System.Private.CoreLib (2)
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.cs (1)
375Debug.Assert(!IsArray);
System\RuntimeType.NativeAot.cs (1)
286return GetRuntimeTypeInfo().IsArray;