Queue Constructor ()
Initializes a new instance of the Queue class that is empty, has the default initial capacity, and uses the default growth factor.
Assembly: mscorlib (in mscorlib.dll)
The capacity of a Queue is the number of elements the Queue can hold. As elements are added to a Queue, the capacity is automatically increased as required through reallocation. The capacity can be decreased by calling TrimToSize.
The growth factor is the number by which the current capacity is multiplied when a greater capacity is required. The growth factor is determined when the Queue is constructed.
This constructor is an O(1) operation.
Available since 10
.NET Framework
Available since 1.1