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