Removes and returns the element at the top of the stack. Returns null if the stack is empty.
Example:
var stack = new Stack<string> ();
stack.push ("a");
assert (stack.pop () == "a");
|
the top element, or null if empty. |