4 overrides of IsVariableBoundArray
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
169
public override bool
IsVariableBoundArray
=> _unmodifiedType.IsVariableBoundArray;
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
26
public abstract override bool
IsVariableBoundArray
{ get; }
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
142
public override bool
IsVariableBoundArray
=> typeImpl.IsVariableBoundArray;
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoType.cs (1)
44
public abstract override bool
IsVariableBoundArray
{ get; }
4 references to IsVariableBoundArray
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
169
public override bool IsVariableBoundArray => _unmodifiedType.
IsVariableBoundArray
;
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\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
142
public override bool IsVariableBoundArray => typeImpl.
IsVariableBoundArray
;
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\General\TypeExtensions.net.cs (1)
14
public static bool IsVariableBoundArray(this Type type) => type.
IsVariableBoundArray
;