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