SortedSet class represents the collection of objects in sorted order. This class comes under the System.Collections.Generic namespace. SortedSet<T>.Contains(T) Method is used to check if a SortedSet contains a specific element or not.
Properties:
- In C#, SortedSet class can be used to store, remove or view elements.
- It maintains ascending order and does not store duplicate elements.
- It is suggested to use SortedSet class if you have to store unique elements and maintain ascending order.
Syntax:
public virtual bool Contains (T item);
Here, T is Type Parameter, i.e, the type of elements in the set.
Return Value: The method returns True if the set contains the specified item, otherwise, returns False.
Example 1:
using System;
using System.Collections.Generic;
class GFG {
public static void Main()
{
SortedSet< int > mySortedSet = new SortedSet< int >();
mySortedSet.Add(2);
mySortedSet.Add(4);
mySortedSet.Add(6);
mySortedSet.Add(8);
mySortedSet.Add(10);
Console.WriteLine(mySortedSet.Contains(6));
}
}
|
Example 2:
using System;
using System.Collections.Generic;
class GFG {
public static void Main()
{
SortedSet< string > mySortedSet = new SortedSet< string >();
mySortedSet.Add( "Mumbai" );
mySortedSet.Add( "Bangalore" );
mySortedSet.Add( "Chandigarh" );
mySortedSet.Add( "Noida" );
mySortedSet.Add( "Jaipur" );
mySortedSet.Add( "Kolkata" );
Console.WriteLine(mySortedSet.Contains( "Delhi" ));
}
}
|
Reference: