
Working with Queues in .NET Part 1 – Create the Queue and add elements
So let’s create and test Queues from here.
First create the Queue.
Queue<string> numbers = new Queue<string>();
Next enque three elements to the end of the queue.
numbers.Enqueue("One");
numbers.Enqueue("Two");
numbers.Enqueue("Three");

Great work! In the next post we’ll look at the elements in the Queue!