Last Updated : 11 Jul, 2025
A
HashSetis an unordered collection of the unique elements. It comes under the
System.Collections.Genericnamespace. It is used in a situation where we want to prevent duplicates from being inserted in the collection. As far as performance is concerned, it is better in comparison to the list.
HashSet .Clear Methodis used to remove all the elements from a HashSet object.
Syntax:mySet.Clear();
Here,
mySetis the name of the HashSet. Below given are some examples to understand the implementation in a better way:
Example 1: CSHARP
// C# code to remove all elements from HashSet
using System;
using System.Collections.Generic;
class GFG {
// Driver code
public static void Main()
{
// Creating a HashSet of integers
HashSet<int> mySet = new HashSet<int>();
// Inserting even numbers less than
// equal to 20 in HashSet mySet1
for (int i = 0; i < 10; i++) {
mySet.Add(i * 2);
}
// Displaying the number of elements in HashSet
Console.WriteLine(mySet.Count);
// Removing all the elements from HashSet
mySet.Clear();
// Displaying the number of elements in HashSet
// after removing all the elements from it
Console.WriteLine(mySet.Count);
}
}
Example 2: CSHARP
// C# code to remove all elements from HashSet
using System;
using System.Collections.Generic;
class GFG {
// Driver code
public static void Main()
{
// Creating a HashSet of strings
HashSet<string> mySet = new HashSet<string>();
// Inserting elements in HashSet
mySet.Add("Geeks");
mySet.Add("and");
mySet.Add("GeeksforGeeks");
mySet.Add("are");
mySet.Add("the");
mySet.Add("best");
// Displaying the number of elements in HashSet
Console.WriteLine(mySet.Count);
// Removing all the elements from HashSet
mySet.Clear();
// Displaying the number of elements in HashSet
// after removing all the elements from it
Console.WriteLine(mySet.Count);
// Inserting elements in HashSet
mySet.Add("Join");
mySet.Add("Geeks");
mySet.Add("Classes");
// Displaying the number of elements in HashSet
Console.WriteLine(mySet.Count);
}
}
Reference:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4