A HashSet is an unordered collection of the unique elements. It comes under System.Collections.Generic namespace. 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. Elements can be added to HashSet using HashSet.Add(T) Method.
Syntax:
mySet.Add(T item);
Here mySet is the name of the HashSet.
Parameter:
item: The element to add to the set.
Return Type: This method returns true if the element is added to the HashSet object. If the element is already present then it returns false.
Below given are some examples to understand the implementation in a better way:
Example 1:
using System;
using System.Collections.Generic;
class GFG {
public static void Main()
{
HashSet< int > odd = new HashSet< int >();
for ( int i = 0; i < 5; i++) {
odd.Add(2 * i + 1);
}
foreach ( int i in odd)
{
Console.WriteLine(i);
}
}
}
|
Example 2:
using System;
using System.Collections.Generic;
class GFG {
public static void Main()
{
HashSet< string > mySet = new HashSet< string >();
mySet.Add( "Geeks" );
mySet.Add( "GeeksforGeeks" );
mySet.Add( "GeeksClasses" );
mySet.Add( "GeeksQuiz" );
foreach ( string i in mySet)
{
Console.WriteLine(i);
}
}
}
|
Output:
Geeks
GeeksforGeeks
GeeksClasses
GeeksQuiz
Reference:
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
01 Feb, 2019
Like Article
Save Article