VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/stack-count-property-in-c-sharp/

⇱ Stack.Count Property in C# - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Stack.Count Property in C#

Last Updated : 11 Jul, 2025
This method(comes under System.Collections namespace) is used to get the number of elements contained in the Stack. The capacity is the number of elements that the Stack can store and the count is the number of elements that are actually in the Stack. The capacity is always greater than or equal to Count. Retrieving the value of this property is an O(1) operation. Syntax:
public virtual int Count { get; }
Return Value: It returns the number of elements contained in the Stack having type System.Int32. Below programs illustrate the use of above-discussed property: Example 1:
Output:
Total number of elements in the Stack are : 6
Example 2:
Output:
Total number of elements in the Stack are : 0
Reference:
Comment

Explore