There are two lists of string
List A; List B;
What is the shortest code you would suggest to check that A.Count ==
var result = A.Count == B.Count && A.Where(y => B.Contains(y)).Count() == A.Count;
Maybe?