1
vote
c# how to equate the elements of two array
This is a one-liner with LINQ:
bool same = !array1.Except (array2).Any() && !array2.Except (array1).Any();
Alternatively, you could call OrderBy on each se …
