Gets the number of elements contained in the Stack.
Documentation for this section has not yet been entered.
The capacity is the number of elements that the Stack can store. Stack.Count is the number of elements that are actually in the Stack.
The capacity is always greater than or equal to Stack.Count. If Stack.Count exceeds the capacity while adding elements, the capacity is automatically increased by reallocating the internal array before copying the old elements and adding the new elements.
Retrieving the value of this property is an O(1) operation.