Queue Constructor
.NET Framework 4.5
Initializes a new instance of the Queue class.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
| Name | Description | |
|---|---|---|
|
Queue() | Initializes a new instance of the Queue class that is empty, has the default initial capacity, and uses the default growth factor. |
|
Queue(ICollection) | Initializes a new instance of the Queue class that contains elements copied from the specified collection, has the same initial capacity as the number of elements copied, and uses the default growth factor. |
|
Queue(Int32) | Initializes a new instance of the Queue class that is empty, has the specified initial capacity, and uses the default growth factor. |
|
Queue(Int32, Single) | Initializes a new instance of the Queue class that is empty, has the specified initial capacity, and uses the specified growth factor. |