5 overrides of IsVariableBoundArray
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
170public override bool IsVariableBoundArray => _unmodifiedType.IsVariableBoundArray;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
29public abstract override bool IsVariableBoundArray { get; }
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
144public override bool IsVariableBoundArray => typeImpl.IsVariableBoundArray;
System\RuntimeType.NativeAot.cs (1)
527public override bool IsVariableBoundArray
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoType.cs (1)
44public abstract override bool IsVariableBoundArray { get; }
7 references to IsVariableBoundArray
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
170public override bool IsVariableBoundArray => _unmodifiedType.IsVariableBoundArray;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureModifiedType.cs (1)
32public override bool IsVariableBoundArray => _unmodifiedType.IsVariableBoundArray;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureTypeExtensions.cs (1)
40return actual.IsVariableBoundArray && pattern.GetArrayRank() == actual.GetArrayRank() && pattern.ElementType!.MatchesExactly(actual.GetElementType()!);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
144public override bool IsVariableBoundArray => typeImpl.IsVariableBoundArray;
System.Reflection.MetadataLoadContext (3)
System\Reflection\Runtime\SignatureTypeExtensions.cs (3)
41else if (pattern.IsVariableBoundArray) 43return actual.IsVariableBoundArray && pattern.GetArrayRank() == actual.GetArrayRank() && pattern.GetElementType()!.MatchesExactly(actual.GetElementType()!); 119else if (signatureType.IsVariableBoundArray)