Check whether an array is a subset of another

bool isSubset = !t2.Except(t1).Any();

Leave a Comment