Languages
[Edit]
EN

C# / .NET - remove duplicates from List using HashSet

0 points
Created by:
Veer-Ahmad
487

In this article, we would like to show you how to remove duplicates from List using HashSet in C#.

Quick solution:

List<string> myList = new List<string> { "A", "A", "B", "B" };

HashSet<string> myHashset = new HashSet<string>(myList);

 

Practical example

In this example, we create HashSet from the List to remove duplicates.

using System;
using System.Collections.Generic;

public class Program
{
    public static void Main()
    {
        List<string> myList = new List<string> { "A", "A", "B", "B" };

        HashSet<string> myHashset = new HashSet<string>(myList);

        foreach (string item in myHashset)
            Console.WriteLine(item);
    }
}

Output:

A
B
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join