An array is a group of contiguous or related data items that the share a conman name.
For example
This program defines the sorting and reversing an array.
Module Module1
Sub Main()
Dim x As Integer() = {30, 10, 80, 90, 20}
Console.WriteLine("array before sorting")
For Each i As Integer In x
Console.Write("" & i)
Next
Console.WriteLine()
Array.Sort(x)
Array.Reverse(x)
Console.WriteLine("Array after sorting and Reversing")
For Each i As Integer In x
Console.WriteLine(" " & i)
Next
Console.WriteLine()
End Sub
End Module
Output of program:

Join the conversation! Your thoughts help the community grow.