Q:

C# program to remove an element from a SortedList (Example of Remove() Method)

belongs to collection: C# SortedList Class Programs

0

Syntax:

    void SortedList.Remove(object key);

Parameter(s):

  • key: The key of the element to remove.

Return value:

This method does not return any value.

Exception(s):

  • System.ArgumentNullException
  • System.NotSupportedException
  •  

All Answers

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

Program:

The source code to remove an element from a SortedList 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(1, "India");
        list.Add(5, "America");
        list.Add(2, "Australia");
        list.Add(3, "Africa");
        list.Add(4, "Canada");


        Console.WriteLine("List before Remove :");
        foreach (DictionaryEntry val in list)
        {
            Console.WriteLine("\t{0} : {1}",
                    val.Key, val.Value);
        }
        Console.WriteLine();

        list.Remove(3);

        Console.WriteLine("List after Remove :");
        foreach (DictionaryEntry val in list)
        {
            Console.WriteLine("\t{0} : {1}",
                    val.Key, val.Value);
        }
        Console.WriteLine();
    }
}

Output:

List before Remove :
        1 : India
        2 : Australia
        3 : Africa
        4 : Canada
        5 : America

List after Remove :
        1 : India
        2 : Australia
        4 : Canada
        5 : America

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 remove an element at the specified i... >>
<< C# program to add elements into a SortedList (Exam...