public bool IsContainsAll(List<long> listA, List<long> listB) { return listB.All(b => listA.Any(a => a.Equals(b))); }