====== Remove Duplicates From List Collection ======
A couple of examples of removing duplicate entries in list collections in C#:
===== Implemented As a Method =====
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
namespace Console1
{
class Program
{
static IEnumerable RemoveDuplicates(List inputList)
{
inputList.Sort();
return inputList.Distinct();
}
static void Main(string[] args)
{
var myList = new List {
"John",
"Andrew",
"James",
"Jack",
"Andrew",
"Bob",
"Jack"
};
var newList = RemoveDuplicates(myList);
foreach (var item in newList)
{
Console.WriteLine(item);
}
}
}
}
===== Implemented As An Extension =====
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
namespace Console1
{
public static class ListExtension
{
public static IEnumerable RemoveDuplicates(this List inputList)
{
inputList.Sort();
return inputList.Distinct();
}
}
class Program
{
static void Main(string[] args)
{
var myList = new List {
"John",
"Andrew",
"James",
"Jack",
"Andrew",
"Bob",
"Jack"
};
var newList = myList.RemoveDuplicates();
foreach (var item in newList)
{
Console.WriteLine(item);
}
}
}
}
{{tag>dotnet}}