vote up 0 vote down star

I don't care about the order of the elements.

http://msdn.microsoft.com/en-us/library/system.linq.enumerable.union.aspx

http://msdn.microsoft.com/en-us/library/bb302894.aspx

flag

2  
Try it both ways. Get out a stopwatch. Then you'll know. Performance "analysis" based on guesswork, no matter how educated, is not actually useful as a basis to make engineering decisions. – Eric Lippert Aug 26 at 22:01

2 Answers

vote up 13 vote down check

Union removes duplicates. Concat does not.

So, they produce different results if the sources either contain any items in common, or have any internal duplicates.

If you can guarantee there are no duplicates, or if there are few and you don't care about having them in your output, Concat will be faster since there's no need to test each value against what has already been yielded.

However, if there are many duplicates and you don't need them, the extra processing in Union to remove the dupes may be offset by the savings in your code that consumes the results.

link|flag
vote up 5 vote down

Do you only care about execution speed? How long does it take you to process an element when you receive it?

Concat is simpler - it doesn't need to perform any processing itself, or buffer the results that it's already returned. However, it will produce more results if there are any elements in the intersection. If you're going to take a long time to process each result, Concat may end up effectively being slower.

link|flag
In my case, I'll use a Distinct() in the end, which favors the use of Union I think. – Jader Dias Aug 26 at 21:54
3  
If you use Union then you don't need to call Distinct afterwards anyway. – Jon Skeet Aug 26 at 21:57
Union removes duplicates between the lists, but if the first list has duplicates within itself those will not be removed by union. So - Distinct might still need to be called, depending on circumstances. – David B Aug 27 at 12:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.