How to convert queue to array in C#

1 Answer

0 votes
using System;
using System.Collections;

class Program
{
    static void Main() {
        Queue queue = new Queue(); 

        queue.Enqueue("c#"); 
        queue.Enqueue("c++"); 
        queue.Enqueue("c"); 
        queue.Enqueue("java"); 

        Object[] arr = queue.ToArray(); 
  
        foreach(Object obj in arr) { 
            Console.WriteLine(obj); 
        } 
    }
}



/*
run:

c#
c++
c
java

*/

 



answered Apr 17, 2020 by avibootz

Related questions

1 answer 150 views
150 views asked Aug 7, 2022 by avibootz
1 answer 148 views
148 views asked Aug 7, 2022 by avibootz
1 answer 153 views
153 views asked Apr 21, 2020 by avibootz
1 answer 178 views
1 answer 77 views
1 answer 129 views
129 views asked Aug 3, 2022 by avibootz
2 answers 229 views
229 views asked May 5, 2020 by avibootz
...