CorLib  

Queue

Queue overview

Implements:

ICloneable 
ICollection 
IEnumerable 
IObject 
IVersionableCollection 

Public:

Properties:
Count (get) Returns the number of items in the queue.  
Methods:
Clear Clears the contents of the queue  
Clone Returns a clone of the queue.  
Contains Determines if the queue contains a specific value.  
CopyTo Copy the contents of the queue to an array.  
Dequeue Returns the item at the head of the queue and removes that item from the queue.  
Enqueue Adds an item to the tail of the queue, expanding the queue as necessary.  
Equals Returns a boolean indicating if the value and this object instance are the same instance.  
GetEnumerator Returns an enumerator for the queue.  
GetHashCode Returns a pseudo-unique number identifying this instance.  
Peek Returns the next value to be removed from the queue without removing the value from the queue.  
ToArray Returns the contents of the queue in a variant array.  
ToString Returns a string representation of this object instance.  
TrimToSize Resizes the internal capacity to match the number of items in the queue.  

See Also