Table of Contents
Hello, friend today we are going to see clearly what we are going to see in the article C# Program to Get Total Number of Elements in Stack. We hope you find this article very useful.

C# Program to Get Total Number of Elements in Stack
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);
}
}
}
Total items in stack: 4
Final Words
C# Program to Get Total Number of Elements in Stack We hope you find the article useful and will see you in the next article.