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