Q:

C# program to remove all elements from a SortedList object (SortedList.Clear() Method)

belongs to collection: C# SortedList Class Programs

0

Syntax:

    void SortedList.Clear();

Parameter(s):

  • None

Return value:

It does not return any value.

Count Property:

This is a get property used to get the total number of stored elements in the Sorted List.

Syntax:

SortedList.Count

 

All Answers

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

Program:

The source code to remove all elements from a SortedList object is given below. The given program is compiled and executed successfully.

using System;
using System.Collections;

class SortedListEx
{
    //Entry point of Program
    static public void Main()
    {
        //Creation of SortedList object
        SortedList list = new SortedList();
        
        //Add elements to SortedList 
        list.Add(101, "India    ");
        list.Add(105, "America  ");
        list.Add(102, "Austrelia");
        list.Add(103, "Africa   ");
        list.Add(104, "Canada   ");

        Console.WriteLine("Count before Clear() method : " + list.Count);
        list.Clear();

        Console.WriteLine("Count after Clear() method : " + list.Count);
    }
}

Output:

Count before Clear() method : 5
Count after Clear() method : 0
Press any key to continue . . .

 

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

total answers (1)

C# SortedList Class Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to get or set the capacity of a SortedL... >>
<< C# program to create a shallow copy of a SortedLis...