I\'ve two arrays like
string[] a = { \"a\", \"b\", \"c\" }; string[] b = { \"a\", \"b\", \"c\" };
I need to compare the two arrays using LI
This works correctly with duplicates and check each element
a.Length == b.Length && !a.Where((t, i) => t != b[i]).Any()