C# program to clear all elements from stack

In this C# program, we will learn how to clear all elements from stack? Here we use Clear() method of Stack class.
Submitted by IncludeHelp, on November 21, 2017

Stack.Clear() method

This is a method of 'Stack' class, it is used to clear/remove all elements of the stack.

Syntax:

void Clear();

Program to clear elements of a stack 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);

            S.Clear();

            Console.WriteLine("Now stack is empty");
            

        }
    }
}

Output

Now stack is empty

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.