Gets the lower bound of the specified dimension in the Array.
[Visual Basic] Public Function GetLowerBound( _ ByVal dimension As Integer _ ) As Integer [C#] public int GetLowerBound( int dimension ); [C++] public: int GetLowerBound( int dimension ); [JScript] public function GetLowerBound( dimension : int ) : int;
The lower bound of the specified dimension in the Array.
Exception Type | Condition |
---|---|
IndexOutOfRangeException | dimension is less than zero.
-or- dimension is equal to or greater than Rank. |
For example, GetLowerBound (0) returns the lower bound for the indexes of the first dimension of the Array, and GetLowerBound (Rank- 1) will return the lower bound of the last dimension of the Array.
Array Class | Array Members | System Namespace | GetUpperBound | Rank