Queue Methods
Assembly: mscorlib (in mscorlib.dll)
| Name | Description | |
|---|---|---|
![]() | Clear() | Removes all objects from the Queue. |
![]() | Clone() | Creates a shallow copy of the Queue. |
![]() | Contains(Object^) | Determines whether an element is in the Queue. |
![]() | CopyTo(Array^, Int32) | |
![]() | Dequeue() | Removes and returns the object at the beginning of the Queue. |
![]() | Enqueue(Object^) | Adds an object to the end of the Queue. |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetEnumerator() | Returns an enumerator that iterates through the Queue. |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | Peek() | Returns the object at the beginning of the Queue without removing it. |
![]() ![]() | Synchronized(Queue^) | Returns a new Queue that wraps the original queue, and is thread safe. |
![]() | ToArray() | Copies the Queue elements to a new array. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
![]() | TrimToSize() | Sets the capacity to the actual number of elements in the Queue. |
| Name | Description | |
|---|---|---|
![]() | AsParallel() | Overloaded. Enables parallelization of a query.(Defined by ParallelEnumerable.) |
![]() | AsQueryable() | Overloaded. Converts an IEnumerable to an IQueryable.(Defined by Queryable.) |
![]() | Cast<TResult>() | Casts the elements of an IEnumerable to the specified type.(Defined by Enumerable.) |
![]() | OfType<TResult>() | Filters the elements of an IEnumerable based on a specified type.(Defined by Enumerable.) |


