How to convert array to queue in C#

1 Answer

0 votes
using System;
using System.Collections.Generic;

class Program
{
    static void Main() {
        string[] array = {"Cullen", "Artemis", "Arthur", "Aurora", "Cora"};
        
        Queue<string> queue = new Queue<string>(array);
        
        Console.WriteLine(string.Join(", ", queue.ToArray()));
    }
}




/*
run:

Cullen, Artemis, Arthur, Aurora, Cora

*/

 



answered Aug 7, 2022 by avibootz

Related questions

1 answer 168 views
168 views asked Apr 17, 2020 by avibootz
1 answer 157 views
157 views asked Aug 7, 2022 by avibootz
1 answer 159 views
159 views asked Apr 21, 2020 by avibootz
1 answer 190 views
1 answer 82 views
1 answer 130 views
130 views asked Aug 3, 2022 by avibootz
2 answers 238 views
238 views asked May 5, 2020 by avibootz
...