VB.Net program to convert the Queue collection into an Object array

Here, we are going to learn how to convert the Queue collection into an Object array in VB.Net?
Submitted by Nidhi, on January 17, 2021 [Last updated : March 08, 2023]

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 »




Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.