C# program to get total number of elements in stack

In this C# program, we will learn how to get total number of element in stack? Here we use Count Property of Stack class.
Submitted by IncludeHelp, on November 23, 2017

Stack.Count property

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

Syntax:

int Stack.Count;

Return value:

This returns total number of element in stack.

Program to get total number of elements in C#

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

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!




Languages: » C » C++ » C++ STL » Java » Data Structure » C#.Net » Android » Kotlin » SQL
Web Technologies: » PHP » Python » JavaScript » CSS » Ajax » Node.js » Web programming/HTML
Solved programs: » C » C++ » DS » Java » C#
Aptitude que. & ans.: » C » C++ » Java » DBMS
Interview que. & ans.: » C » Embedded C » Java » SEO » HR
CS Subjects: » CS Basics » O.S. » Networks » DBMS » Embedded Systems » Cloud Computing
» Machine learning » CS Organizations » Linux » DOS
More: » Articles » Puzzles » News/Updates

© https://www.includehelp.com some rights reserved.