×

C# Tutorial

Basics of .Net

C# Basics

C# Fundamentals

C# Operators

C# Loops

C# Type Conversions

C# Exception Handling

C# String Class

C# Arrays

C# List

C# Stack

C# Queue

C# Collections

C# Character Class

C# Class and Object

C# Namespaces

C# Delegates

C# Constructors

C# Inheritance

C# Operator Overloading

C# Structures

C# File Handling

C# Convert.ToInt32()

C# Int32 (int) Struct

C# DateTime Class

C# Uri Class

C# Database Connectivity

C# Windows

C# Other Topics

C# Q & A

C# Programs

C# Find O/P

C# - Stack.Count Property with Example

Learn, how to get total number of element in stack in C#?
Submitted by IncludeHelp, on November 23, 2017 [Last updated : March 27, 2023]

C# Stack.Count Property

This is a property of 'Stack' class, it returns total number of elements available in stack.

Syntax

int Stack.Count;

Parameter(s)

  • None

Return Value

This returns total number of element in stack.

C# program to get total number of elements

using System;
using System.Collections;

namespace ConsoleApplication1 {
  class Program {
    static void Main() {
      Stack S = new Stack(5);

      S.Push(10);
      S.Push(20);
      S.Push(30);
      S.Push(40);

      Console.WriteLine("Total items in stack: " + S.Count);
    }
  }
}

Output

Total items in stack: 4

Explanation

In this program, we are pushing 4 elements (10,20,30,40) in stack. And then, getting the total number of elements of stack using Count property of Stack.

Note: In above program, to use 'Stack' class, we need to include System.Collection namespace.

C# Data Structure Programs »

Advertisement
Advertisement

Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.