Home »
VB.Net »
VB.Net Programs
VB.Net program to convert the Stack collection into an Object array
By Nidhi Last Updated : October 13, 2024
Convert the Stack collection into an Object array in VB.Net
Here, we will use ToArray() method of Stack collection to covert the Stack into the Object array and print the Object array elements on the console screen.
Program/Source Code:
The source code to convert the Stack collection into an Object array is given below. The given program is compiled and executed successfully.
VB.Net code to convert the Stack collection into an Object array
'VB.Net program to convert the Stack collection
'into an Object array.
Imports System
Imports System.Collections
Module Module1
Sub Main()
Dim arr(4) As Object
Dim stk As New Stack(5)
stk.Push("India")
stk.Push("USA")
stk.Push("UK")
stk.Push("CHINA")
arr = stk.ToArray()
Console.WriteLine("Object Array elements are:")
For i = 0 To 3 Step 1
Console.WriteLine(vbTab & "Item[" & (i + 1) & "]: " & arr(i))
Next
End Sub
End Module
Output
Object Array elements are:
Item[1]: CHINA
Item[2]: UK
Item[3]: USA
Item[4]: India
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, And, we created an object of Stack collection class for 5 elements. After that, we inserted 4 items using the Push() method and then converted the Stack collection into the object array, and then printed the elements of the object array on the console screen.
VB.Net Data Structure Programs »