Queue Class (Collection)
Defines the structure of an object that represents a collection of elements accessed on a first-in, first-out (FIFO) basis.
Elements are added to the end of the queue using the Enqueue(object) method where elements can reference different object types.
Elements are removed from the beginning of the queue using the Dequeue method. The Peek method reads the first element without removing it.
Namespace: elsystem.collections