Check if SortedSet and a specified collection share common elements in C#


To check if SortedSet and a specified collection share common element, the code is as follows −

Example

 Live Demo

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      SortedSet<int> set1 = new SortedSet<int>();
      set1.Add(100);
      set1.Add(200);
      set1.Add(300);
      set1.Add(400);
      set1.Add(500);
      set1.Add(600);
      SortedSet<int> set2 = new SortedSet<int>();
      set2.Add(100);
      set2.Add(200);
      set2.Add(300);
      set2.Add(400);
      set2.Add(500);
      set2.Add(600);
      Console.WriteLine("Does it share common elements? = "+set1.Overlaps(set2));
   }
}

Output

This will produce the following output −

Does it share common elements? = True

Example

Let us see another example −

 Live Demo

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      SortedSet<int> set1 = new SortedSet<int>();
      set1.Add(100);
      set1.Add(200);
      set1.Add(300);
      SortedSet<int> set2 = new SortedSet<int>();
      set2.Add(450);
      set2.Add(550);
      set2.Add(650);
      set2.Add(750);
      set2.Add(800);
      Console.WriteLine("Does it share common elements? = "+set1.Overlaps(set2));
   }
}

Output

This will produce the following output −

Does it share common elements? = False

Updated on: 10-Dec-2019

47 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements