Represents a simple queue of Object.
Object
Stack
[Visual Basic] Public Class Stack Implements ICollection, IEnumerable [C#] public class Stack : ICollection, IEnumerable [C++] public __gc class Stack : public ICollection, IEnumerable [JScript] public class Stack implements ICollection, IEnumerable
Stack is implemented as a circular buffer. Push is an O(n) operation; Pop is an O(1) operation.
Namespace: System.Collections
Assembly: mscorlib.dll