4 overrides of IsVariableBoundArray
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
169public override bool IsVariableBoundArray => _unmodifiedType.IsVariableBoundArray;
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
26public abstract override bool IsVariableBoundArray { get; }
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
142public override bool IsVariableBoundArray => typeImpl.IsVariableBoundArray;
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoType.cs (1)
44public abstract override bool IsVariableBoundArray { get; }
4 references to IsVariableBoundArray
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
169public override bool IsVariableBoundArray => _unmodifiedType.IsVariableBoundArray;
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureTypeExtensions.cs (1)
40return actual.IsVariableBoundArray && pattern.GetArrayRank() == actual.GetArrayRank() && pattern.ElementType!.MatchesExactly(actual.GetElementType()!);
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
142public override bool IsVariableBoundArray => typeImpl.IsVariableBoundArray;
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\General\TypeExtensions.net.cs (1)
14public static bool IsVariableBoundArray(this Type type) => type.IsVariableBoundArray;