Stack Methods
Assembly: mscorlib (in mscorlib.dll)
| Name | Description | |
|---|---|---|
![]() | Clear() | Removes all objects from the Stack. |
![]() | Clone() | Creates a shallow copy of the Stack. |
![]() | Contains(Object^) | Determines whether an element is in the Stack. |
![]() | CopyTo(Array^, Int32) | |
![]() | 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 IEnumerator for the Stack. |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | Peek() | Returns the object at the top of the Stack without removing it. |
![]() | Pop() | Removes and returns the object at the top of the Stack. |
![]() | Push(Object^) | Inserts an object at the top of the Stack. |
![]() ![]() | Synchronized(Stack^) | Returns a synchronized (thread safe) wrapper for the Stack. |
![]() | ToArray() | Copies the Stack to a new array. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
| 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.) |


