@Cameron's solution as an extension method:
public static bool IsSubsetOf(this IEnumerable a, IEnumerable b)
{
return !a.Except(b).Any();
}
Usage:
bool isSubset = t2.IsSubsetOf(t1);
(This is similar, but not quite the same as the one posted on @Michael's blog)