Home »
VB.Net »
VB.Net Programs
VB.Net program to demonstrate the Reverse() method of Array class
Here, we are going to demonstrate the Reverse() method of Array class in VB.Net.
Submitted by Nidhi, on January 20, 2021 [Last updated : March 07, 2023]
Array.Reverse() Method in VB.Net
The Reverse() method is used to reverse the specified array.
Syntax
Sub Reverse(ByVal arr() as object)
Parameter(s)
- Arr: It is the specified integer array to be reversed.
Return Value
It does not return any value.
VB.Net code to demonstrate the example of Array.Reverse() method
The source code to demonstrate the Reverse() method of the Array class is given below. The given program is compiled and executed successfully.
'VB.NET program to demonstrate the Reverse()
'method of Array class.
Imports System
Module Module1
Sub Main()
Dim arr() As Integer = {10, 20, 30, 40, 50}
Console.WriteLine("Original Array elements: ")
For i = 0 To arr.Length - 1 Step 1
Console.Write(arr(i) & " ")
Next
Array.Reverse(arr)
Console.WriteLine(vbCrLf & "Reversed Array elements: ")
For i = 0 To arr.Length - 1 Step 1
Console.Write(arr(i) & " ")
Next
Console.WriteLine()
End Sub
End Module
Output
Original Array elements:
10 20 30 40 50
Reversed Array elements:
50 40 30 20 10
Press any key to continue . . .
Explanation
In the above program, we created a module Module1 that contains the Main() function. The Main() function is the entry point for the program.
In the Main() function, we created an array arr with 5 elements. After that, we reverse the array using the Reverse() method and then we printed the reversed array on the console screen.
VB.Net Array Programs »