CorLib  

Stack

Stack overview

Implements:

ICloneable 
ICollection 
IEnumerable 
IObject 
IVersionableCollection 

Public:

Properties:
Count (get) Returns the number of items on the stack.  
Methods:
Clear Removes all values from the collection.  
Clone Returns a copy of this instance.  
Contains Returns whether the collection contains a value.  
CopyTo Copies the values to an array.  
Equals Returns a boolean indicating if the value and this object instance are the same instance.  
GetEnumerator Returns an enumerator to enumerate the colleciton  
GetHashCode Returns a pseudo-unique number identifying this instance.  
Peek Returns the next to be removed value from the stack without removing the value.  
Pop Returns the next value from the stack, removing the item from the collection.  
Push Places a value into the collection and becomes the next to be removed value from the collection.  
ToArray Returns a Variant array copy of the stack.  
ToString Returns a string representation of this object instance.  

See Also