Array Declaration
To declare an array in VB.Net, you use the Dim statement.
Example:
Dim intData(30) ' an array of 31 elements
Dim strData(20) As String ' an array of 21 strings
We can also initialize the array elements while declaring the array.
Example:
Dim intData() As Integer = {12, 16, 20, 24, 28, 32}
Dim names() As String = { "Karthik", "Sandhya","Shivangi", "Ashwitha", "Somnath" }
Last modified: Thursday, 11 July 2019, 11:58 AM