
- 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
Remove a specified item from SortedSet in C#
To remove a specified item from SortedSet, 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("Count of elements in SortedSet = " + set2.Count); set2.Remove("HI"); set2.Remove("JK"); Console.WriteLine("Count of elements in SortedSet (updated) = " + set2.Count); } }
Output
This will produce the following output −
Elements in SortedSet1... AB BC CD EF Elements in SortedSet2... AB BC CD DE EF HI JK Count of elements in SortedSet = 7 Count of elements in SortedSet (updated) = 5
Example
Let us see another example −
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); Console.WriteLine("Elements in SortedSet..."); foreach (int res in set1){ Console.WriteLine(res); } Console.WriteLine("Count of elements in SortedSet = " + set1.Count); set1.Remove(100); Console.WriteLine("Count of elements in SortedSet (updated) = " + set1.Count); } }
Output
This will produce the following output −
Elements in SortedSet... 100 200 300 400 Count of elements in SortedSet = 4 Count of elements in SortedSet (updated) = 3
- Related Articles
- Remove all elements from the SortedSet in C#
- Remove elements from a SortedSet that match the predicate in C#
- Remove an item from a Hashtable in C#
- Remove a FileList item from a multiple “input:file” in HTML5
- Remove the specified element from a HashSet in C#
- Remove specified element from HashSet in Java
- Remove specified element from TreeSet in Java
- Remove item from a nested array by indices in JavaScript
- Remove specified element from Java LinkedHashSet
- MongoDB query to remove item from array?
- Remove from the specified index of a SortedList in C#
- Check if SortedSet and a specified collection share common elements in C#
- Check if a SortedSet is a subset of the specified collection in C#
- Check if a SortedSet is a superset of the specified collection in C#
- C# program to remove an item from Set

Advertisements