
- C# Basic Tutorial
- C# - Home
- C# - Overview
- C# - Environment
- C# - Program Structure
- C# - Basic Syntax
- C# - Data Types
- C# - Type Conversion
- C# - Variables
- C# - Constants
- C# - Operators
- C# - Decision Making
- C# - Loops
- C# - Encapsulation
- C# - Methods
- C# - Nullables
- C# - Arrays
- C# - Strings
- C# - Structure
- C# - Enums
- C# - Classes
- C# - Inheritance
- C# - Polymorphism
- C# - Operator Overloading
- C# - Interfaces
- C# - Namespaces
- C# - Preprocessor Directives
- C# - Regular Expressions
- C# - Exception Handling
- C# - File I/O
- C# Advanced Tutorial
- C# - Attributes
- C# - Reflection
- C# - Properties
- C# - Indexers
- C# - Delegates
- C# - Events
- C# - Collections
- C# - Generics
- C# - Anonymous Methods
- C# - Unsafe Codes
- C# - Multithreading
- C# Useful Resources
- C# - Questions and Answers
- C# - Quick Guide
- C# - Useful Resources
- C# - Discussion
Check if a SortedSet is a subset of the specified collection in C#
To check if a SortedSet is a subset of the specified collection, the code is as follows −
Example
using System; using System.Collections.Generic; public class Demo { public static void Main(){ SortedSet<string> set1 = new SortedSet<string>(); set1.Add("AB"); set1.Add("BC"); set1.Add("CD"); set1.Add("EF"); Console.WriteLine("Elements in SortedSet1..."); foreach (string res in set1){ Console.WriteLine(res); } SortedSet<string> set2 = new SortedSet<string>(); set2.Add("BC"); set2.Add("CD"); set2.Add("DE"); set2.Add("EF"); set2.Add("AB"); set2.Add("HI"); set2.Add("JK"); Console.WriteLine("Elements in SortedSet2..."); foreach (string res in set2){ Console.WriteLine(res); } Console.WriteLine("SortedSet1 is a subset of SortedSet2? = "+set1.IsSubsetOf(set2)); } }
Output
This will produce the following output −
Elements in SortedSet1... AB BC CD EF Elements in SortedSet2... AB BC CD DE EF HI JK SortedSet1 is a subset of SortedSet2? = True
Example
Let us see another example:
using System; using System.Collections.Generic; public class Demo { public static void Main(){ SortedSet<string> set1 = new SortedSet<string>(); set1.Add("CD"); set1.Add("CD"); set1.Add("CD"); set1.Add("CD"); Console.WriteLine("Elements in SortedSet1..."); foreach (string res in set1){ Console.WriteLine(res); } SortedSet<string> set2 = new SortedSet<string>(); set2.Add("BC"); set2.Add("CD"); set2.Add("DE"); set2.Add("EF"); set2.Add("AB"); set2.Add("HI"); set2.Add("JK"); Console.WriteLine("Elements in SortedSet2..."); foreach (string res in set2){ Console.WriteLine(res); } Console.WriteLine("SortedSet1 is a subset of SortedSet2? = "+set1.IsSubsetOf(set2)); } }
Output
This will produce the following output −
Elements in SortedSet1... CD Elements in SortedSet2... AB BC CD DE EF HI JK SortedSet1 is a subset of SortedSet2? = True
- Related Articles
- Check if a SortedSet object is a proper subset of the specified collection in C#
- Check if a SortedSet is a superset of the specified collection in C#
- Check if a HashSet is a subset of the specified collection in C#
- Check if a SortedSet object is a proper superset of the specified collection in C#
- Check if a HashSet is a proper subset of the specified collection in C#
- Check if SortedSet and a specified collection share common elements in C#
- Check if SortedSet and the specified collection contain the same elements in C#
- Check if a HashSet is a superset of the specified collection in C#
- Check if a HashSet is a proper superset of the specified collection in C#
- Check if a HashSet and a specified collection share common element in C#
- Union of SortedSet to a collection in C#
- Intersection of SortedSet with a collection in C#
- Check if the SortedSet contains a specific element in C#
- How to get a subset in a SortedSet in C#?
- Remove a specified item from SortedSet in C#

Advertisements