Q:

C# program to clear all elements of Queue

0

C# program to clear all elements of Queue

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program to clear all elements from a Queue in C#

using System;
using System.Collections;

namespace ConsoleApplication1
{
    
    class Program
    {
        static void Main()
        {
            Queue Q = new Queue(5);

            Q.Enqueue(10);
            Q.Enqueue(20);
            Q.Enqueue(30);
            Q.Enqueue(40);

            Q.Clear();

            Console.WriteLine("All items deleted successfully");

        }
    }
}

Output

All items deleted successfully

In this program, we added 4 items into queue than delete all items using Clear() method.

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

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# Data Structure Solved Programs/Examples

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to count total items/elements of Queue... >>
<< C# program to delete or dequeue elements from queu...