Pushes an element onto the top of the stack.
Example:
var stack = new Stack<string> (); stack.push ("hello"); assert (stack.size () == 1);
the element to push.