Open In App

C# | Check if a SortedList object contains a specific value

SortedList class is a collection of (key, value) pairs which are sorted according to keys. Those pairs can be accessible by key and as well as by index(zero-based indexing). This comes under System.Collections namespace. SortedList.ContainsValue(Object) method is used to check whether a SortedList object contains a specific value or not.
 

Properties: 

Syntax : 

public virtual bool ContainsValue (object value);

Here, value is the value to locate in the SortedList object and it can be null.
Return Value: This method returns True if the SortedList object contains an element with the specified value, otherwise it returns False.
Below programs illustrate the use of SortedList.ContainsValue(Object) Method:
Example 1:




// C# code to check if a SortedList
// object contains a specific value
using System;
using System.Collections;
 
class GFG {
 
    // Driver code
    public static void Main()
    {
 
        // Creating an SortedList
        SortedList mySortedList = new SortedList();
 
        // Adding elements to SortedList
        mySortedList.Add("1", "1st");
        mySortedList.Add("2", "2nd");
        mySortedList.Add("3", "3rd");
        mySortedList.Add("4", "4th");
 
        // Checking if a SortedList object
        // contains a specific value
        Console.WriteLine(mySortedList.ContainsValue(null));
    }
}

Output: 
False

 

Example 2:




// C# code to check if a SortedList
// object contains a specific value
using System;
using System.Collections;
 
class GFG {
 
    // Driver code
    public static void Main()
    {
 
        // Creating an SortedList
        SortedList mySortedList = new SortedList();
 
        // Adding elements to SortedList
        mySortedList.Add("h", "Hello");
        mySortedList.Add("g", "Geeks");
        mySortedList.Add("f", "For");
        mySortedList.Add("n", "Noida");
 
        // Checking if a SortedList object
        // contains a specific value
        Console.WriteLine(mySortedList.ContainsValue("Geeks"));
    }
}

Output: 
True

 

Note:  

Reference:


Article Tags :
C#