VB.NET Language in a Nutshell
| Stack.Push Method |
Class
System.Collections.Stack
Syntax
stackvariable .Push( obj )
- obj (required; Object)
-
The item to place in the stack
Return Value
None
Description
Places an Object on the top of the stack
Rules at a Glance
The Push method adds an item to the top of the stack and increases the Count property by 1.