9
1
Option Strict On
2
Imports System
3
Public Module Module1
4
Public Sub Main()
5
Dim methodsToDeclareAnArray(1) As String 'Declare a String array with an upper-bounds of 1(number of items is 2)
6
methodsToDeclareAnArray(0) = "Specify the upper-bounds"
7
methodsToDeclareAnArray(1) = "Initialize the array"
8
End Sub
9
End Module
Cached Result