NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Stack Class

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

Remarks

Stack is implemented as a circular buffer. Push is an O(n) operation; Pop is an O(1) operation.

Requirements

Namespace: System.Collections

Assembly: mscorlib.dll

See Also

Stack Members | System.Collections Namespace