Array lower bound and upper bound : Array Bound « Collections « VB.Net Tutorial






Option Strict On

Public Class CArray
   Public Shared Sub Main()
      Dim dims() As Integer = {10} ' Number of elements in array
      Dim bnds() As Integer = {1} ' Lower bound of array
      Dim Scores As Array = Array.CreateInstance(GetType(Integer), dims, bnds)
      
      Console.WriteLine(UBound(Scores))
      Console.WriteLine(LBound(Scores))
   End Sub
End Class
10
1








8.2.Array Bound
8.2.1.Show and use the array boundaries
8.2.2.Use array UBound in For loop
8.2.3.GetUpperBound
8.2.4.Array lower bound and upper bound
8.2.5.Get array lower bound, upper bound and length