EN
C# / .NET - remove duplicates from List using HashSet
0
points
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