i've two arrays like
string[] a = { "a", "b", "c" };
string[] b = { "a", "b", "c" };
i need to compare the two arrays using LINQ.
the comparison should take place only if both arrays have same size.
|
After some performance testing:
|
|||||||||||||||||
|
|
Not sure about the performance, but this seems to work.
However, it is not order independent so it does not fulfill the OP's requirement.
|
|||||||||
|
|
I think this will always be an O(n log n) operation, so I'd just sort both arrays and compare them e.g. using SequenceEqual. |
|||
|
|
|
if order doesn't matter or there can be duplicates, then perhaps:
usage:
some use cases:
also works if the inputs can contain duplicate items, though it isn't clear from the question whether that characteristic is desired or not, consider:
|
|||||||
|
|
|||
|
|