Q:

C# program to check whether a SortedList object contains a specific key (Example of ContainsKey() Method)

0

Syntax:

    bool SortedList.ContainsKey(object key);

Parameter(s):

  • key: The key to locate in the SortedList object.

Return value:

It returns a boolean value, if the key is found within SortedList then it returns true, otherwise it returns false.

 

All Answers

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

Program:

The source code to check whether a SortedList object contains a specific key 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();

        bool ret = false;

        //Add elements to SortedList 
        list.Add(101, "India    ");
        list.Add(105, "America  ");
        list.Add(102, "Australia");
        list.Add(103, "Africa   ");
        list.Add(104, "Canada   ");

        ret = list.ContainsKey(102);
        if (ret == true)
            Console.WriteLine("102 is contained in list");
        else
            Console.WriteLine("102 is not contained in list");

        ret = list.ContainsKey(108);
        if (ret == true)
            Console.WriteLine("108 is contained in list");
        else
            Console.WriteLine("108 is not contained in list");
    }
}

Output:

102 is contained in list
108 is not contained in list
Press any key to continue . . .

 

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

total answers (1)

Similar questions


need a help?


find thousands of online teachers now