GetLength returns the length of a specified dimension of a mulit-dimensional array.
Length returns the sum of the total number of elements in all the dimensions.
- For a single-dimensional array, Length == GetLength(0)
- For a two-dimensional array, Length == GetLength(0) * GetLength(1)
etc.