Anyone have a quick method for de-duplicating a generic List in C#?
|
|
Perhaps you should consider using a HashSet? |
||
|
|
|
|
Sort it, then check two and two next to each others, as the duplicates will clump together. Something like this:
|
||||
|
|
|
In Java (I assume C# is more or less identical):
If you really wanted to mutate the original list:
To preserve order, simply replace HashSet with LinkedHashSet. |
|||
|
|
|
|
If you don't care about the order you can just shove the items into a
Or the Linq way:
Edit: The |
|||
|
|
|
|
How about:-
In .net 3.5? |
||
|
|
|
|
If you're using .Net 3+, you can use Linq.
|
||||||||
|
|
|
As kronoz said in .Net 3.5 you can use In .Net 2 you could mimic it:
This could be used to dedupe any collection, but you could return the passedValues variable if you wanted a list instead. It's normally much quicker to filter a collection (as both |
||
|
|
|
Have a look at my blog. There's an extension method for removing duplicates from an IEnumerable. |
||||
|
|
|
Simply initialize a HashSet with a List of the same type:
|
||
|
|
