Type.IsVariableBoundArray Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value that indicates whether the type is an array type that can represent a multi-dimensional array or an array with an arbitrary lower bound.
public:
virtual property bool IsVariableBoundArray { bool get(); };
public virtual bool IsVariableBoundArray { get; }
member this.IsVariableBoundArray : bool
Public Overridable ReadOnly Property IsVariableBoundArray As Boolean
Property Value
true
if the current Type is an array type that can represent a multi-dimensional array or an array with an arbitrary lower bound; otherwise, false
.
Remarks
If the value of this property is true
for an array type, it can be used to create single-dimensional or multi-dimensional array instances with arbitrary lower bounds. Otherwise, the array type can only be used to create instances of single-dimensional arrays with a zero lower bound.